| Left: | ||
| Right: |
| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 222 | 222 |
| 223 { | 223 { |
| 224 'target_name': 'tests_plugin', | 224 'target_name': 'tests_plugin', |
| 225 'type': 'executable', | 225 'type': 'executable', |
| 226 'dependencies': [ | 226 'dependencies': [ |
| 227 'shared', | 227 'shared', |
| 228 'libadblockplus/libadblockplus.gyp:libadblockplus', | 228 'libadblockplus/libadblockplus.gyp:libadblockplus', |
| 229 'libadblockplus/third_party/googletest.gyp:googletest_main', | 229 'libadblockplus/third_party/googletest.gyp:googletest_main', |
| 230 ], | 230 ], |
| 231 'sources': [ | 231 'sources': [ |
| 232 'src/plugin/Exception.h', | |
|
sergei
2015/03/06 13:51:12
Do we need also to add it to addon project?
Eric
2015/03/06 17:29:59
This exception-handling pattern is also applicable
| |
| 232 'src/plugin/PluginUserSettings.cpp', | 233 'src/plugin/PluginUserSettings.cpp', |
| 233 'src/plugin/PluginUserSettings.h', | 234 'src/plugin/PluginUserSettings.h', |
| 235 'test/plugin/ExceptionTest.cpp', | |
| 234 'test/plugin/UserSettingsTest.cpp', | 236 'test/plugin/UserSettingsTest.cpp', |
| 235 # | 237 # |
| 236 # required only for linking | 238 # required only for linking |
| 237 # | 239 # |
| 238 'src/plugin/AdblockPlusClient.cpp', | 240 'src/plugin/AdblockPlusClient.cpp', |
| 239 'src/plugin/AdblockPlusDomTraverser.cpp', | 241 'src/plugin/AdblockPlusDomTraverser.cpp', |
| 240 'src/plugin/ATL_Deprecate.cpp', | 242 'src/plugin/ATL_Deprecate.cpp', |
| 241 'src/plugin/NotificationMessage.cpp', | 243 'src/plugin/NotificationMessage.cpp', |
| 242 'src/plugin/Plugin.cpp', | 244 'src/plugin/Plugin.cpp', |
| 243 'src/plugin/PluginClientBase.cpp', | 245 'src/plugin/PluginClientBase.cpp', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 296 'Release': { | 298 'Release': { |
| 297 'msvs_settings': { | 299 'msvs_settings': { |
| 298 'VCLinkerTool': { | 300 'VCLinkerTool': { |
| 299 'AdditionalDependencies': ['atls.lib'], | 301 'AdditionalDependencies': ['atls.lib'], |
| 300 }, | 302 }, |
| 301 }, | 303 }, |
| 302 }, | 304 }, |
| 303 }, | 305 }, |
| 304 }] | 306 }] |
| 305 } | 307 } |
| OLD | NEW |