| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 71       'VCLinkerTool': { | 71       'VCLinkerTool': { | 
| 72         'DelayLoadDLLs': ['Shell32.dll'], | 72         'DelayLoadDLLs': ['Shell32.dll'], | 
| 73       }, | 73       }, | 
| 74     }, | 74     }, | 
| 75   }, | 75   }, | 
| 76 | 76 | 
| 77   { | 77   { | 
| 78     'target_name': 'AdblockPlus', | 78     'target_name': 'AdblockPlus', | 
| 79     'type': 'shared_library', | 79     'type': 'shared_library', | 
| 80     'dependencies': [ | 80     'dependencies': [ | 
| 81       'shared' | 81       'shared', | 
|  | 82       'libadblockplus/libadblockplus.gyp:libadblockplus', | 
| 82     ], | 83     ], | 
| 83     'sources': [ | 84     'sources': [ | 
| 84       'src/plugin/abp.h', | 85       'src/plugin/abp.h', | 
| 85       'src/plugin/AdblockPlus.def', | 86       'src/plugin/AdblockPlus.def', | 
| 86       'src/plugin/AdblockPlus.idl', | 87       'src/plugin/AdblockPlus.idl', | 
| 87       'src/plugin/AdblockPlus.rc', | 88       'src/plugin/AdblockPlus.rc', | 
| 88       'src/plugin/AdblockPlus.rgs', | 89       'src/plugin/AdblockPlus.rgs', | 
| 89       'src/plugin/AdblockPlusClient.cpp', | 90       'src/plugin/AdblockPlusClient.cpp', | 
| 90       'src/plugin/AdblockPlusClient.h', | 91       'src/plugin/AdblockPlusClient.h', | 
| 91       'src/plugin/AdblockPlusDomTraverser.cpp', | 92       'src/plugin/AdblockPlusDomTraverser.cpp', | 
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 221         'EntryPointSymbol': 'mainCRTStartup', | 222         'EntryPointSymbol': 'mainCRTStartup', | 
| 222       }, | 223       }, | 
| 223     }, | 224     }, | 
| 224   }, | 225   }, | 
| 225 | 226 | 
| 226   { | 227   { | 
| 227     'target_name': 'tests_plugin', | 228     'target_name': 'tests_plugin', | 
| 228     'type': 'executable', | 229     'type': 'executable', | 
| 229     'dependencies': [ | 230     'dependencies': [ | 
| 230       'shared', | 231       'shared', | 
|  | 232       'libadblockplus/libadblockplus.gyp:libadblockplus', | 
| 231       'libadblockplus/third_party/googletest.gyp:googletest_main', | 233       'libadblockplus/third_party/googletest.gyp:googletest_main', | 
| 232     ], | 234     ], | 
| 233     'sources': [ | 235     'sources': [ | 
| 234       'src/plugin/PluginUserSettings.cpp', | 236       'src/plugin/PluginUserSettings.cpp', | 
| 235       'src/plugin/PluginUserSettings.h', | 237       'src/plugin/PluginUserSettings.h', | 
| 236       'test/plugin/UserSettingsTest.cpp', | 238       'test/plugin/UserSettingsTest.cpp', | 
| 237       # | 239       # | 
| 238       # required only for linking | 240       # required only for linking | 
| 239       # | 241       # | 
| 240       'src/plugin/AdblockPlusClient.cpp', | 242       'src/plugin/AdblockPlusClient.cpp', | 
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 299       'Release': { | 301       'Release': { | 
| 300         'msvs_settings': { | 302         'msvs_settings': { | 
| 301           'VCLinkerTool': { | 303           'VCLinkerTool': { | 
| 302             'AdditionalDependencies': ['atls.lib'], | 304             'AdditionalDependencies': ['atls.lib'], | 
| 303           }, | 305           }, | 
| 304         }, | 306         }, | 
| 305       }, | 307       }, | 
| 306     }, | 308     }, | 
| 307   }] | 309   }] | 
| 308 } | 310 } | 
| OLD | NEW | 
|---|