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

Side by Side Diff: build-v8.gypi

Issue 29748587: Issue 6063, 6531 - Update V8 to 6.5.254.41, use C++14 and NDK-r16b (Closed) Base URL: https://github.com/adblockplus/libadblockplus@549616e865707b89e95659d55c70e22d63130ce5
Patch Set: Created April 10, 2018, 1:45 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
OLDNEW
1 { 1 {
2 'includes': ['common.gypi'], 2 'includes': ['common.gypi'],
3 'variables': { 3 'variables': {
4 'v8_enable_i18n_support': 0, 4 'v8_enable_i18n_support': 0,
5 'v8_optimized_debug': 0, 5 'v8_optimized_debug': 0,
6 'v8_use_external_startup_data': 0, 6 'v8_use_external_startup_data': 0,
7 'v8_use_snapshot': 1, 7 'v8_use_snapshot': 1,
8 'v8_random_seed%': 0, 8 'v8_random_seed%': 0,
9 'v8_android_log_stdout': 1,
9 }, 10 },
10 11
12 'target_defaults': {
13 'defines': [
14 '__ANDROID_API__=16',
15 ],
16 },
11 'conditions': [ 17 'conditions': [
12 ['OS=="win"', { 18 ['OS=="win"', {
13 'target_defaults': { 19 'target_defaults': {
14 'configurations': { 20 'configurations': {
15 'Debug': { 21 'Debug': {
16 'conditions': [ 22 'conditions': [
17 ['target_arch=="x64"', { 23 ['target_arch=="x64"', {
18 'msvs_settings': { 24 'msvs_settings': {
19 'VCCLCompilerTool': { 25 'VCCLCompilerTool': {
20 'AdditionalOptions': [ 26 'AdditionalOptions': [
21 '/bigobj', # compiling fatal error C1128: number of sectio ns exceeded object file format limit: compile with /bigobj 27 '/bigobj', # compiling fatal error C1128: number of sectio ns exceeded object file format limit: compile with /bigobj
22 ] 28 ]
23 } 29 }
24 } 30 }
25 }] 31 }]
26 ], 32 ],
27 } 33 }
28 }, 34 },
29 'msvs_settings': { 35 'msvs_settings': {
30 'VCCLCompilerTool': { 36 'VCCLCompilerTool': {
31 'WarningLevel': 0, 37 'WarningLevel': 0,
32 }, 38 },
33 }, 39 },
34 } 40 }
35 }] 41 }]
36 ], 42 ],
37 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld