Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: adblockplus.gyp

Issue 5316782940225536: Issue 1557 - Update to the recent libadblockplus to reduce additional updates in the logic later. (Closed)
Patch Set: fix according to the comments Created Jan. 28, 2015, 1:22 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/engine/Main.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 ],
51 'direct_dependent_settings':
52 {
53 'include_dirs': [
54 'libadblockplus/include',
55 ],
56 },
46 }, 57 },
47 58
48 { 59 {
49 'target_name': 'AdblockPlusEngine', 60 'target_name': 'AdblockPlusEngine',
50 'type': 'executable', 61 'type': 'executable',
51 'dependencies': [ 62 'dependencies': [
52 'shared', 63 'shared',
53 'libadblockplus/libadblockplus.gyp:libadblockplus', 64 'libadblockplus/libadblockplus.gyp:libadblockplus',
54 ], 65 ],
55 'sources': [ 66 'sources': [
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 'Release': { 310 'Release': {
300 'msvs_settings': { 311 'msvs_settings': {
301 'VCLinkerTool': { 312 'VCLinkerTool': {
302 'AdditionalDependencies': ['atls.lib'], 313 'AdditionalDependencies': ['atls.lib'],
303 }, 314 },
304 }, 315 },
305 }, 316 },
306 }, 317 },
307 }] 318 }]
308 } 319 }
OLDNEW
« no previous file with comments | « no previous file | src/engine/Main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld