| Index: v8.gypi |
| diff --git a/v8.gypi b/v8.gypi |
| index 018caedd2facc515c0f73ebc03584e7d2644453a..427495145be58f6f3870dcfc0813b3bc35fde6b8 100644 |
| --- a/v8.gypi |
| +++ b/v8.gypi |
| @@ -1,9 +1,22 @@ |
| { |
| - 'target_defaults': { |
| - 'target_conditions': [ |
| - ['_type=="static_library"', { |
| - 'standalone_static_library': 1 |
| - }] |
| - ], |
| - } |
| + 'includes': ['common.gypi'], |
| + 'variables': { |
| + 'v8_enable_i18n_support': 0, |
| + 'v8_optimized_debug': 0, |
| + 'v8_use_external_startup_data': 0, |
| + 'v8_use_snapshot': 1, |
| + 'v8_random_seed%': 0, |
| + }, |
| + |
| + 'conditions': [ |
| + ['OS=="win"', { |
| + 'target_defaults': { |
| + 'msvs_settings': { |
| + 'VCCLCompilerTool': { |
| + 'WarningLevel': 0, |
| + }, |
| + }, |
| + } |
| + }] |
| + ], |
| } |