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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
223 | 223 |
224 { | 224 { |
225 'target_name': 'tests_plugin', | 225 'target_name': 'tests_plugin', |
226 'type': 'executable', | 226 'type': 'executable', |
227 'dependencies': [ | 227 'dependencies': [ |
228 'shared', | 228 'shared', |
229 'libadblockplus/libadblockplus.gyp:libadblockplus', | 229 'libadblockplus/libadblockplus.gyp:libadblockplus', |
230 'libadblockplus/third_party/googletest.gyp:googletest_main', | 230 'libadblockplus/third_party/googletest.gyp:googletest_main', |
231 ], | 231 ], |
232 'sources': [ | 232 'sources': [ |
233 'src/plugin/Exception.cpp', | |
Oleksandr
2015/02/27 10:48:36
What do we need an empty .cpp file for?
Eric
2015/02/27 15:36:50
Oops. I had that in there before I realized that w
| |
234 'src/plugin/Exception.h', | |
233 'src/plugin/PluginUserSettings.cpp', | 235 'src/plugin/PluginUserSettings.cpp', |
234 'src/plugin/PluginUserSettings.h', | 236 'src/plugin/PluginUserSettings.h', |
237 'test/plugin/ExceptionTest.cpp', | |
235 'test/plugin/UserSettingsTest.cpp', | 238 'test/plugin/UserSettingsTest.cpp', |
236 # | 239 # |
237 # required only for linking | 240 # required only for linking |
238 # | 241 # |
239 'src/plugin/AdblockPlusClient.cpp', | 242 'src/plugin/AdblockPlusClient.cpp', |
240 'src/plugin/AdblockPlusDomTraverser.cpp', | 243 'src/plugin/AdblockPlusDomTraverser.cpp', |
241 'src/plugin/ATL_Deprecate.cpp', | 244 'src/plugin/ATL_Deprecate.cpp', |
242 'src/plugin/NotificationMessage.cpp', | 245 'src/plugin/NotificationMessage.cpp', |
243 'src/plugin/Plugin.cpp', | 246 'src/plugin/Plugin.cpp', |
244 'src/plugin/PluginClientBase.cpp', | 247 'src/plugin/PluginClientBase.cpp', |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
297 'Release': { | 300 'Release': { |
298 'msvs_settings': { | 301 'msvs_settings': { |
299 'VCLinkerTool': { | 302 'VCLinkerTool': { |
300 'AdditionalDependencies': ['atls.lib'], | 303 'AdditionalDependencies': ['atls.lib'], |
301 }, | 304 }, |
302 }, | 305 }, |
303 }, | 306 }, |
304 }, | 307 }, |
305 }] | 308 }] |
306 } | 309 } |
OLD | NEW |