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