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 24 matching lines...) Expand all Loading... |
35 'type': 'static_library', | 35 'type': 'static_library', |
36 'sources': [ | 36 'sources': [ |
37 'src/shared/AutoHandle.cpp', | 37 'src/shared/AutoHandle.cpp', |
38 'src/shared/Communication.cpp', | 38 'src/shared/Communication.cpp', |
39 'src/shared/Dictionary.cpp', | 39 'src/shared/Dictionary.cpp', |
40 'src/shared/Utils.cpp', | 40 'src/shared/Utils.cpp', |
41 'src/shared/Registry.h', | 41 'src/shared/Registry.h', |
42 'src/shared/Registry.cpp', | 42 'src/shared/Registry.cpp', |
43 'src/shared/IE_version.h', | 43 'src/shared/IE_version.h', |
44 'src/shared/IE_version.cpp', | 44 'src/shared/IE_version.cpp', |
45 ] | 45 'src/shared/ContentType.h', |
| 46 'src/shared/ContentType.cpp', |
| 47 ], |
| 48 'include_dirs': [ |
| 49 'libadblockplus/include', |
| 50 ], |
46 }, | 51 }, |
47 | 52 |
48 { | 53 { |
49 'target_name': 'AdblockPlusEngine', | 54 'target_name': 'AdblockPlusEngine', |
50 'type': 'executable', | 55 'type': 'executable', |
51 'dependencies': [ | 56 'dependencies': [ |
52 'shared', | 57 'shared', |
53 'libadblockplus/libadblockplus.gyp:libadblockplus', | 58 'libadblockplus/libadblockplus.gyp:libadblockplus', |
54 ], | 59 ], |
55 'sources': [ | 60 'sources': [ |
(...skipping 15 matching lines...) Expand all Loading... |
71 'VCLinkerTool': { | 76 'VCLinkerTool': { |
72 'DelayLoadDLLs': ['Shell32.dll'], | 77 'DelayLoadDLLs': ['Shell32.dll'], |
73 }, | 78 }, |
74 }, | 79 }, |
75 }, | 80 }, |
76 | 81 |
77 { | 82 { |
78 'target_name': 'AdblockPlus', | 83 'target_name': 'AdblockPlus', |
79 'type': 'shared_library', | 84 'type': 'shared_library', |
80 'dependencies': [ | 85 'dependencies': [ |
81 'shared' | 86 'shared', |
| 87 'libadblockplus/libadblockplus.gyp:libadblockplus', |
82 ], | 88 ], |
83 'sources': [ | 89 'sources': [ |
84 'src/plugin/abp.h', | 90 'src/plugin/abp.h', |
85 'src/plugin/AdblockPlus.def', | 91 'src/plugin/AdblockPlus.def', |
86 'src/plugin/AdblockPlus.idl', | 92 'src/plugin/AdblockPlus.idl', |
87 'src/plugin/AdblockPlus.rc', | 93 'src/plugin/AdblockPlus.rc', |
88 'src/plugin/AdblockPlus.rgs', | 94 'src/plugin/AdblockPlus.rgs', |
89 'src/plugin/AdblockPlusClient.cpp', | 95 'src/plugin/AdblockPlusClient.cpp', |
90 'src/plugin/AdblockPlusClient.h', | 96 'src/plugin/AdblockPlusClient.h', |
91 'src/plugin/AdblockPlusDomTraverser.cpp', | 97 'src/plugin/AdblockPlusDomTraverser.cpp', |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 'EntryPointSymbol': 'mainCRTStartup', | 227 'EntryPointSymbol': 'mainCRTStartup', |
222 }, | 228 }, |
223 }, | 229 }, |
224 }, | 230 }, |
225 | 231 |
226 { | 232 { |
227 'target_name': 'tests_plugin', | 233 'target_name': 'tests_plugin', |
228 'type': 'executable', | 234 'type': 'executable', |
229 'dependencies': [ | 235 'dependencies': [ |
230 'shared', | 236 'shared', |
| 237 'libadblockplus/libadblockplus.gyp:libadblockplus', |
231 'libadblockplus/third_party/googletest.gyp:googletest_main', | 238 'libadblockplus/third_party/googletest.gyp:googletest_main', |
232 ], | 239 ], |
233 'sources': [ | 240 'sources': [ |
234 'src/plugin/PluginUserSettings.cpp', | 241 'src/plugin/PluginUserSettings.cpp', |
235 'src/plugin/PluginUserSettings.h', | 242 'src/plugin/PluginUserSettings.h', |
236 'test/plugin/UserSettingsTest.cpp', | 243 'test/plugin/UserSettingsTest.cpp', |
237 # | 244 # |
238 # required only for linking | 245 # required only for linking |
239 # | 246 # |
240 'src/plugin/AdblockPlusClient.cpp', | 247 'src/plugin/AdblockPlusClient.cpp', |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 'Release': { | 306 'Release': { |
300 'msvs_settings': { | 307 'msvs_settings': { |
301 'VCLinkerTool': { | 308 'VCLinkerTool': { |
302 'AdditionalDependencies': ['atls.lib'], | 309 'AdditionalDependencies': ['atls.lib'], |
303 }, | 310 }, |
304 }, | 311 }, |
305 }, | 312 }, |
306 }, | 313 }, |
307 }] | 314 }] |
308 } | 315 } |
OLD | NEW |