| Index: build/standalone.gypi
|
| diff --git a/build/standalone.gypi b/build/standalone.gypi
|
| index 60747c37fd0db10cb4f91babf3f776c36086e2a9..696b21dc4935e7af6898fa9aff4baaf3ac8d1c0e 100644
|
| --- a/build/standalone.gypi
|
| +++ b/build/standalone.gypi
|
| @@ -28,11 +28,15 @@
|
| # Definitions to be used when building stand-alone V8 binaries.
|
|
|
| {
|
| + # We need to include toolchain.gypi here for third-party sources that don't
|
| + # directly include it themselves.
|
| + 'includes': ['toolchain.gypi'],
|
| 'variables': {
|
| 'component%': 'static_library',
|
| 'clang%': 0,
|
| 'visibility%': 'hidden',
|
| 'v8_enable_backtrace%': 0,
|
| + 'v8_enable_i18n_support%': 0,
|
| 'msvs_multi_core_compile%': '1',
|
| 'mac_deployment_target%': '10.5',
|
| 'variables': {
|
| @@ -133,6 +137,9 @@
|
| },
|
| }],
|
| ['OS == "win"', {
|
| + 'defines!': [
|
| + 'DEBUG',
|
| + ],
|
| 'msvs_settings': {
|
| 'VCCLCompilerTool': {
|
| 'WarnAsError': 'false',
|
| @@ -223,6 +230,14 @@
|
| # 1 == /SUBSYSTEM:CONSOLE
|
| # 2 == /SUBSYSTEM:WINDOWS
|
| 'SubSystem': '1',
|
| +
|
| + 'conditions': [
|
| + ['v8_enable_i18n_support==1', {
|
| + 'AdditionalDependencies': [
|
| + 'advapi32.lib',
|
| + ],
|
| + }],
|
| + ],
|
| },
|
| },
|
| },
|
|
|