LEFT | RIGHT |
1 { | 1 { |
2 'includes': ['defaults.gypi'], | 2 'includes': ['defaults.gypi'], |
3 | 3 |
4 'variables': { | 4 'variables': { |
5 'build_type%': 'devbuild', | 5 'build_type%': 'devbuild', |
6 'build_version%': '', | 6 'build_version%': '', |
7 }, | 7 }, |
8 | 8 |
9 'target_defaults': { | 9 'target_defaults': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 'target_name': 'tests', | 204 'target_name': 'tests', |
205 'type': 'executable', | 205 'type': 'executable', |
206 'dependencies': [ | 206 'dependencies': [ |
207 'shared', | 207 'shared', |
208 'libadblockplus/third_party/googletest.gyp:googletest_main', | 208 'libadblockplus/third_party/googletest.gyp:googletest_main', |
209 ], | 209 ], |
210 'sources': [ | 210 'sources': [ |
211 'test/CommunicationTest.cpp', | 211 'test/CommunicationTest.cpp', |
212 'test/DictionaryTest.cpp', | 212 'test/DictionaryTest.cpp', |
213 'test/RegistryTest.cpp', | 213 'test/RegistryTest.cpp', |
| 214 'test/UtilTest.cpp', |
214 ], | 215 ], |
215 'defines': ['WINVER=0x0501'], | 216 'defines': ['WINVER=0x0501'], |
216 'link_settings': { | 217 'link_settings': { |
217 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], | 218 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], |
218 }, | 219 }, |
219 'msvs_settings': { | 220 'msvs_settings': { |
220 'VCLinkerTool': { | 221 'VCLinkerTool': { |
221 'SubSystem': '1', # Console | 222 'SubSystem': '1', # Console |
222 'EntryPointSymbol': 'mainCRTStartup', | 223 'EntryPointSymbol': 'mainCRTStartup', |
223 }, | 224 }, |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 'Release': { | 302 'Release': { |
302 'msvs_settings': { | 303 'msvs_settings': { |
303 'VCLinkerTool': { | 304 'VCLinkerTool': { |
304 'AdditionalDependencies': ['atls.lib'], | 305 'AdditionalDependencies': ['atls.lib'], |
305 }, | 306 }, |
306 }, | 307 }, |
307 }, | 308 }, |
308 }, | 309 }, |
309 }] | 310 }] |
310 } | 311 } |
LEFT | RIGHT |