| OLD | NEW |
| 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': [ |
| 18 ['OS=="linux" or OS=="mac"', { |
| 19 'target_defaults': { |
| 20 'cflags': [ '-fPIC' ], |
| 21 'cflags_cc': [ '-fPIC' ] |
| 22 } |
| 23 }], |
| 12 ['OS=="win"', { | 24 ['OS=="win"', { |
| 13 'target_defaults': { | 25 'target_defaults': { |
| 14 'configurations': { | 26 'configurations': { |
| 15 'Debug': { | 27 'Debug': { |
| 16 'conditions': [ | 28 'conditions': [ |
| 17 ['target_arch=="x64"', { | 29 ['target_arch=="x64"', { |
| 18 'msvs_settings': { | 30 'msvs_settings': { |
| 19 'VCCLCompilerTool': { | 31 'VCCLCompilerTool': { |
| 20 'AdditionalOptions': [ | 32 'AdditionalOptions': [ |
| 21 '/bigobj', # compiling fatal error C1128: number of sectio
ns exceeded object file format limit: compile with /bigobj | 33 '/bigobj', # compiling fatal error C1128: number of sectio
ns exceeded object file format limit: compile with /bigobj |
| 22 ] | 34 ] |
| 23 } | 35 } |
| 24 } | 36 } |
| 25 }] | 37 }] |
| 26 ], | 38 ], |
| 27 } | 39 } |
| 28 }, | 40 }, |
| 29 'msvs_settings': { | 41 'msvs_settings': { |
| 30 'VCCLCompilerTool': { | 42 'VCCLCompilerTool': { |
| 31 'WarningLevel': 0, | 43 'WarningLevel': 0, |
| 32 }, | 44 }, |
| 33 }, | 45 }, |
| 34 } | 46 } |
| 35 }] | 47 }] |
| 36 ], | 48 ], |
| 37 } | 49 } |
| OLD | NEW |