Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: adblockplus.gyp

Issue 29323611: Issue #1234, #2058 - Rewrite log facility, improving thread implementation
Patch Set: rebase only Created July 27, 2016, 9:11 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/plugin/ActiveQueue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblockplus.gyp
===================================================================
--- a/adblockplus.gyp
+++ b/adblockplus.gyp
@@ -111,6 +111,7 @@
'libadblockplus/libadblockplus.gyp:libadblockplus',
],
'sources': [
+ 'src/plugin/ActiveQueue.h',
'src/plugin/AdblockPlus.def',
'src/plugin/AdblockPlus.idl',
'src/plugin/AdblockPlus.rc',
@@ -125,12 +126,11 @@
'src/plugin/Instances.h',
'src/plugin/NotificationMessage.cpp',
'src/plugin/NotificationMessage.h',
+ 'src/plugin/Placeholder.h',
'src/plugin/Plugin.cpp',
'src/plugin/Plugin.h',
'src/plugin/PluginClass.cpp',
'src/plugin/PluginClass.h',
- 'src/plugin/PluginClientBase.cpp',
- 'src/plugin/PluginClientBase.h',
'src/plugin/PluginClientFactory.cpp',
'src/plugin/PluginClientFactory.h',
'src/plugin/PluginDebug.cpp',
@@ -248,7 +248,6 @@
'src/plugin/AdblockPlusDomTraverser.cpp',
'src/plugin/NotificationMessage.cpp',
'src/plugin/Plugin.cpp',
- 'src/plugin/PluginClientBase.cpp',
'src/plugin/PluginClientFactory.cpp',
'src/plugin/PluginClass.cpp',
'src/plugin/PluginFilter.cpp',
@@ -287,5 +286,33 @@
]],
},
},
- }]
+ },
+
+ {
+ 'target_name': 'tests_plugin_2',
+ 'type': 'executable',
+ 'dependencies': [
+ 'libadblockplus/third_party/googletest.gyp:googletest_main',
+ ],
+ 'sources': [
+ 'src/plugin/ActiveQueue.h',
+ 'src/plugin/Placeholder.h',
+ 'test/plugin/ActiveQueueTest.cpp',
+ 'test/plugin/PlaceholderTest.cpp',
+ ],
+ 'defines': [
+ ],
+ 'link_settings': {
+ 'libraries': [],
+ },
+ #'msbuild_toolset': 'v140',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '1', # Console
+ 'EntryPointSymbol': 'mainCRTStartup',
+ },
+ },
+ },
+
+ ]
}
« no previous file with comments | « no previous file | src/plugin/ActiveQueue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld