OLD | NEW |
| (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 } | |
OLD | NEW |