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

Unified Diff: adblockplus.gyp

Issue 10897028: Create a shared dictionary class for plugin and engine (Closed)
Patch Set: Created June 7, 2013, 12:42 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
Index: adblockplus.gyp
===================================================================
--- a/adblockplus.gyp
+++ b/adblockplus.gyp
@@ -5,21 +5,24 @@
'target_name': 'tests',
'type': 'executable',
'dependencies': [
'googletest_main',
],
'sources': [
'src/shared/AutoHandle.cpp',
'src/shared/Communication.cpp',
+ 'src/shared/Dictionary.cpp',
+ 'src/shared/Utils.cpp',
'test/CommunicationTest.cpp',
+ 'test/DictionaryTest.cpp',
],
'defines': ['WINVER=0x0501'],
'link_settings': {
- 'libraries': ['-ladvapi32'],
+ 'libraries': ['-ladvapi32', '-lshell32', '-lole32'],
},
'msvs_settings': {
'VCLinkerTool': {
'SubSystem': '1', # Console
'EntryPointSymbol': 'mainCRTStartup',
},
},
}]

Powered by Google App Engine
This is Rietveld