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