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