OLD | NEW |
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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 'target_name': 'tests', | 203 'target_name': 'tests', |
204 'type': 'executable', | 204 'type': 'executable', |
205 'dependencies': [ | 205 'dependencies': [ |
206 'shared', | 206 'shared', |
207 'libadblockplus/third_party/googletest.gyp:googletest_main', | 207 'libadblockplus/third_party/googletest.gyp:googletest_main', |
208 ], | 208 ], |
209 'sources': [ | 209 'sources': [ |
210 'test/CommunicationTest.cpp', | 210 'test/CommunicationTest.cpp', |
211 'test/DictionaryTest.cpp', | 211 'test/DictionaryTest.cpp', |
212 'test/RegistryTest.cpp', | 212 'test/RegistryTest.cpp', |
| 213 'test/UtilGetQueryString.cpp', |
| 214 'test/UtilSplitString.cpp', |
| 215 'test/UtilProcessQueryStringParameters.cpp', |
213 ], | 216 ], |
214 'defines': ['WINVER=0x0501'], | 217 'defines': ['WINVER=0x0501'], |
215 'link_settings': { | 218 'link_settings': { |
216 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], | 219 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], |
217 }, | 220 }, |
218 'msvs_settings': { | 221 'msvs_settings': { |
219 'VCLinkerTool': { | 222 'VCLinkerTool': { |
220 'SubSystem': '1', # Console | 223 'SubSystem': '1', # Console |
221 'EntryPointSymbol': 'mainCRTStartup', | 224 'EntryPointSymbol': 'mainCRTStartup', |
222 }, | 225 }, |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 'Release': { | 302 'Release': { |
300 'msvs_settings': { | 303 'msvs_settings': { |
301 'VCLinkerTool': { | 304 'VCLinkerTool': { |
302 'AdditionalDependencies': ['atls.lib'], | 305 'AdditionalDependencies': ['atls.lib'], |
303 }, | 306 }, |
304 }, | 307 }, |
305 }, | 308 }, |
306 }, | 309 }, |
307 }] | 310 }] |
308 } | 311 } |
OLD | NEW |