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