| OLD | NEW | 
|---|
| 1 { | 1 { | 
| 2   'includes': [ | 2   'includes': [ | 
| 3     'defaults.gypi', | 3     'defaults.gypi', | 
| 4     'common/common.gypi', | 4     'common/common.gypi', | 
| 5   ], | 5   ], | 
| 6 | 6 | 
| 7   'variables': { | 7   'variables': { | 
| 8     'build_type%': 'devbuild', | 8     'build_type%': 'devbuild', | 
| 9     'build_version%': '', | 9     'build_version%': '', | 
| 10   }, | 10   }, | 
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 235     'type': 'executable', | 235     'type': 'executable', | 
| 236     'dependencies': [ | 236     'dependencies': [ | 
| 237       'shared', | 237       'shared', | 
| 238       'libadblockplus/libadblockplus.gyp:libadblockplus', | 238       'libadblockplus/libadblockplus.gyp:libadblockplus', | 
| 239       'libadblockplus/third_party/googletest.gyp:googletest_main', | 239       'libadblockplus/third_party/googletest.gyp:googletest_main', | 
| 240     ], | 240     ], | 
| 241     'sources': [ | 241     'sources': [ | 
| 242       'src/plugin/PluginUserSettings.cpp', | 242       'src/plugin/PluginUserSettings.cpp', | 
| 243       'src/plugin/PluginUserSettings.h', | 243       'src/plugin/PluginUserSettings.h', | 
| 244       'test/plugin/UserSettingsTest.cpp', | 244       'test/plugin/UserSettingsTest.cpp', | 
|  | 245       'src/plugin/PluginUtil.h', | 
|  | 246       'test/plugin/UtilTest.cpp', | 
| 245       # | 247       # | 
| 246       # required only for linking | 248       # required only for linking | 
| 247       # | 249       # | 
| 248       'src/plugin/AdblockPlusClient.cpp', | 250       'src/plugin/AdblockPlusClient.cpp', | 
| 249       'src/plugin/AdblockPlusDomTraverser.cpp', | 251       'src/plugin/AdblockPlusDomTraverser.cpp', | 
| 250       'src/plugin/ATL_Deprecate.cpp', | 252       'src/plugin/ATL_Deprecate.cpp', | 
| 251       'src/plugin/NotificationMessage.cpp', | 253       'src/plugin/NotificationMessage.cpp', | 
| 252       'src/plugin/Plugin.cpp', | 254       'src/plugin/Plugin.cpp', | 
| 253       'src/plugin/PluginClientBase.cpp', | 255       'src/plugin/PluginClientBase.cpp', | 
| 254       'src/plugin/PluginClientFactory.cpp', | 256       'src/plugin/PluginClientFactory.cpp', | 
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 306       'Release': { | 308       'Release': { | 
| 307         'msvs_settings': { | 309         'msvs_settings': { | 
| 308           'VCLinkerTool': { | 310           'VCLinkerTool': { | 
| 309             'AdditionalDependencies': ['atls.lib'], | 311             'AdditionalDependencies': ['atls.lib'], | 
| 310           }, | 312           }, | 
| 311         }, | 313         }, | 
| 312       }, | 314       }, | 
| 313     }, | 315     }, | 
| 314   }] | 316   }] | 
| 315 } | 317 } | 
| OLD | NEW | 
|---|