| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 'type': 'executable', | 227 'type': 'executable', |
| 228 'dependencies': [ | 228 'dependencies': [ |
| 229 'shared', | 229 'shared', |
| 230 'libadblockplus/libadblockplus.gyp:libadblockplus', | 230 'libadblockplus/libadblockplus.gyp:libadblockplus', |
| 231 'libadblockplus/third_party/googletest.gyp:googletest_main', | 231 'libadblockplus/third_party/googletest.gyp:googletest_main', |
| 232 ], | 232 ], |
| 233 'sources': [ | 233 'sources': [ |
| 234 'src/plugin/PluginUserSettings.cpp', | 234 'src/plugin/PluginUserSettings.cpp', |
| 235 'src/plugin/PluginUserSettings.h', | 235 'src/plugin/PluginUserSettings.h', |
| 236 'test/plugin/UserSettingsTest.cpp', | 236 'test/plugin/UserSettingsTest.cpp', |
| 237 'src/plugin/PluginUtil.h', |
| 238 'test/plugin/UtilTest.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', |
| 241 'src/plugin/AdblockPlusDomTraverser.cpp', | 243 'src/plugin/AdblockPlusDomTraverser.cpp', |
| 242 'src/plugin/ATL_Deprecate.cpp', | 244 'src/plugin/ATL_Deprecate.cpp', |
| 243 'src/plugin/NotificationMessage.cpp', | 245 'src/plugin/NotificationMessage.cpp', |
| 244 'src/plugin/Plugin.cpp', | 246 'src/plugin/Plugin.cpp', |
| 245 'src/plugin/PluginClientBase.cpp', | 247 'src/plugin/PluginClientBase.cpp', |
| 246 'src/plugin/PluginClientFactory.cpp', | 248 'src/plugin/PluginClientFactory.cpp', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 'Release': { | 300 'Release': { |
| 299 'msvs_settings': { | 301 'msvs_settings': { |
| 300 'VCLinkerTool': { | 302 'VCLinkerTool': { |
| 301 'AdditionalDependencies': ['atls.lib'], | 303 'AdditionalDependencies': ['atls.lib'], |
| 302 }, | 304 }, |
| 303 }, | 305 }, |
| 304 }, | 306 }, |
| 305 }, | 307 }, |
| 306 }] | 308 }] |
| 307 } | 309 } |
| OLD | NEW |