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

Side by Side Diff: libadblockplus.gyp

Issue 29783566: Issue 6596 - update to work with v8 6.7.288.11 (Closed) Base URL: https://github.com/adblockplus/libadblockplus@99836840e314b7941fdb51cb2b91f23ca3ee3414
Patch Set: mention the version of V8 Created May 25, 2018, 10:04 a.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 | « include/AdblockPlus/JsEngine.h ('k') | third_party/v8_gyp_launcher » ('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 'conditions': [[ 2 'conditions': [[
3 # We don't want to use curl on Windows and Android, skip the check there 3 # We don't want to use curl on Windows and Android, skip the check there
4 'OS=="win" or OS=="android"', 4 'OS=="win" or OS=="android"',
5 { 5 {
6 'variables': { 6 'variables': {
7 'have_curl': 0 7 'have_curl': 0
8 } 8 }
9 }, 9 },
10 { 10 {
11 'variables': { 11 'variables': {
12 'have_curl': '<!(python check_curl.py)' 12 'have_curl': '<!(python check_curl.py)'
13 } 13 }
14 } 14 }
15 ]], 15 ]],
16 'includes': ['v8.gypi', 'shell/shell.gyp'], 16 'includes': ['v8.gypi', 'shell/shell.gyp'],
17 'targets': [{ 17 'targets': [{
18 'target_name': 'libadblockplus', 18 'target_name': 'libadblockplus',
19 'type': '<(library)', 19 'type': '<(library)',
20 'dependencies': ['<@(libv8_build_targets)'],
21 'xcode_settings':{}, 20 'xcode_settings':{},
22 'include_dirs': [ 21 'include_dirs': [
23 'include', 22 'include',
24 '<(libv8_include_dir)' 23 '<(libv8_include_dir)'
25 ], 24 ],
26 'sources': [ 25 'sources': [
27 'include/AdblockPlus/ActiveObject.h', 26 'include/AdblockPlus/ActiveObject.h',
28 'include/AdblockPlus/AsyncExecutor.h', 27 'include/AdblockPlus/AsyncExecutor.h',
29 'include/AdblockPlus/ITimer.h', 28 'include/AdblockPlus/ITimer.h',
30 'include/AdblockPlus/IWebRequest.h', 29 'include/AdblockPlus/IWebRequest.h',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 'test/WebRequest.cpp' 210 'test/WebRequest.cpp'
212 ], 211 ],
213 'msvs_settings': { 212 'msvs_settings': {
214 'VCLinkerTool': { 213 'VCLinkerTool': {
215 'SubSystem': '1', # Console 214 'SubSystem': '1', # Console
216 'EntryPointSymbol': 'mainCRTStartup', 215 'EntryPointSymbol': 'mainCRTStartup',
217 }, 216 },
218 }, 217 },
219 }] 218 }]
220 } 219 }
OLDNEW
« no previous file with comments | « include/AdblockPlus/JsEngine.h ('k') | third_party/v8_gyp_launcher » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld