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

Side by Side Diff: build-v8.gypi

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 | « build-v8.cmd ('k') | dependencies » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 'includes': ['common.gypi'],
3 'variables': {
4 'v8_enable_i18n_support': 0,
5 'v8_optimized_debug': 0,
6 'v8_use_external_startup_data': 0,
7 'v8_use_snapshot': 1,
8 'v8_random_seed%': 0,
9 'v8_android_log_stdout': 1,
10 },
11
12 'target_defaults': {
13 'defines': [
14 '__ANDROID_API__=16',
15 ],
16 },
17 'conditions': [
18 ['OS=="linux" or OS=="mac" or OS=="android"', {
19 'target_defaults': {
20 'cflags': [ '-fPIC' ],
21 'cflags_cc': [ '-fPIC' ]
22 }
23 }],
24 ['OS=="win"', {
25 'target_defaults': {
26 'configurations': {
27 'Debug': {
28 'conditions': [
29 ['target_arch=="x64"', {
30 'msvs_settings': {
31 'VCCLCompilerTool': {
32 'AdditionalOptions': [
33 '/bigobj', # compiling fatal error C1128: number of sectio ns exceeded object file format limit: compile with /bigobj
34 ]
35 }
36 }
37 }]
38 ],
39 }
40 },
41 'msvs_settings': {
42 'VCCLCompilerTool': {
43 'WarningLevel': 0,
44 },
45 },
46 }
47 }]
48 ],
49 }
OLDNEW
« no previous file with comments | « build-v8.cmd ('k') | dependencies » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld