OLD | NEW |
1 { | 1 { |
2 'includes': ['libadblockplus/common.gypi', 'libadblockplus/third_party/googlet
est.gyp'], | 2 'includes': ['libadblockplus/common.gypi', 'libadblockplus/third_party/googlet
est.gyp'], |
3 | 3 |
4 'targets': [{ | 4 'targets': [{ |
5 'target_name': 'tests', | 5 'target_name': 'tests', |
6 'type': 'executable', | 6 'type': 'executable', |
7 'dependencies': [ | 7 'dependencies': [ |
8 'googletest_main', | 8 'googletest_main', |
9 ], | 9 ], |
10 'sources': [ | 10 'sources': [ |
11 'src/shared/AutoHandle.cpp', | 11 'src/shared/AutoHandle.cpp', |
12 'src/shared/Communication.cpp', | 12 'src/shared/Communication.cpp', |
| 13 'src/shared/Dictionary.cpp', |
| 14 'src/shared/Utils.cpp', |
13 'test/CommunicationTest.cpp', | 15 'test/CommunicationTest.cpp', |
| 16 'test/DictionaryTest.cpp', |
14 ], | 17 ], |
15 'defines': ['WINVER=0x0501'], | 18 'defines': ['WINVER=0x0501'], |
16 'link_settings': { | 19 'link_settings': { |
17 'libraries': ['-ladvapi32'], | 20 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], |
18 }, | 21 }, |
19 'msvs_settings': { | 22 'msvs_settings': { |
20 'VCLinkerTool': { | 23 'VCLinkerTool': { |
21 'SubSystem': '1', # Console | 24 'SubSystem': '1', # Console |
22 'EntryPointSymbol': 'mainCRTStartup', | 25 'EntryPointSymbol': 'mainCRTStartup', |
23 }, | 26 }, |
24 }, | 27 }, |
25 }] | 28 }] |
26 } | 29 } |
OLD | NEW |