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

Side by Side Diff: libadblockplus.gyp

Issue 29493566: Issue 5433 - add option to use prebuilt v8 (Closed) Base URL: https://github.com/adblockplus/libadblockplus.git
Patch Set: update readme Created July 20, 2017, 7:59 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 | « README.md ('k') | v8.gypi » ('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 {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 } 61 }
62 } 62 }
63 ]], 63 ]],
64 }, 64 },
65 'conditions': [ 65 'conditions': [
66 ['OS=="linux" or OS=="mac"', { 66 ['OS=="linux" or OS=="mac"', {
67 'link_settings': { 67 'link_settings': {
68 'libraries': [ 68 'libraries': [
69 '<@(libv8_libs)' 69 '<@(libv8_libs)'
70 ], 70 ],
71 'library_dirs': [
72 '<(libv8_lib_dir)'
73 ]
71 } 74 }
72 }], 75 }],
73 ['OS=="win"', { 76 ['OS=="win"', {
74 'link_settings': { 77 'link_settings': {
75 'libraries': [ 78 'libraries': [
76 '<@(libv8_libs)', 79 '<@(libv8_libs)',
77 '-lwinmm' 80 '-lwinmm'
78 ], 81 ],
79 }, 82 },
80 }], 83 }],
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 'test/WebRequest.cpp' 202 'test/WebRequest.cpp'
200 ], 203 ],
201 'msvs_settings': { 204 'msvs_settings': {
202 'VCLinkerTool': { 205 'VCLinkerTool': {
203 'SubSystem': '1', # Console 206 'SubSystem': '1', # Console
204 'EntryPointSymbol': 'mainCRTStartup', 207 'EntryPointSymbol': 'mainCRTStartup',
205 }, 208 },
206 }, 209 },
207 }] 210 }]
208 } 211 }
OLDNEW
« no previous file with comments | « README.md ('k') | v8.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld