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