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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 'test/UtilTest.cpp', |
| 215 'test/UtilGetQueryStringTest.cpp', |
| 216 'test/UtilForEachTokenTest.cpp', |
| 217 'test/UtilForEachQueryStringParameterTest.cpp', |
| 218 'test/UtilGetSchemeAndHierarchicalPartTest.cpp', |
215 ], | 219 ], |
216 'defines': ['WINVER=0x0501'], | 220 'defines': ['WINVER=0x0501'], |
217 'link_settings': { | 221 'link_settings': { |
218 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], | 222 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], |
219 }, | 223 }, |
220 'msvs_settings': { | 224 'msvs_settings': { |
221 'VCLinkerTool': { | 225 'VCLinkerTool': { |
222 'SubSystem': '1', # Console | 226 'SubSystem': '1', # Console |
223 'EntryPointSymbol': 'mainCRTStartup', | 227 'EntryPointSymbol': 'mainCRTStartup', |
224 }, | 228 }, |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 'Release': { | 306 'Release': { |
303 'msvs_settings': { | 307 'msvs_settings': { |
304 'VCLinkerTool': { | 308 'VCLinkerTool': { |
305 'AdditionalDependencies': ['atls.lib'], | 309 'AdditionalDependencies': ['atls.lib'], |
306 }, | 310 }, |
307 }, | 311 }, |
308 }, | 312 }, |
309 }, | 313 }, |
310 }] | 314 }] |
311 } | 315 } |
OLD | NEW |