| Index: src/d8.gyp
|
| diff --git a/src/d8.gyp b/src/d8.gyp
|
| index 47a7cc01187b00203b4881c826e7a3a1a85aa042..6a57e122fe7d0a98e60c439fd1ce418437b13d43 100644
|
| --- a/src/d8.gyp
|
| +++ b/src/d8.gyp
|
| @@ -31,8 +31,9 @@
|
| 'console%': '',
|
| # Enable support for Intel VTune. Supported on ia32/x64 only
|
| 'v8_enable_vtunejit%': 0,
|
| + 'v8_enable_i18n_support%': 0,
|
| },
|
| - 'includes': ['../build/common.gypi'],
|
| + 'includes': ['../build/toolchain.gypi', '../build/features.gypi'],
|
| 'targets': [
|
| {
|
| 'target_name': 'd8',
|
| @@ -78,6 +79,15 @@
|
| '../src/third_party/vtune/v8vtune.gyp:v8_vtune',
|
| ],
|
| }],
|
| + ['v8_enable_i18n_support==1', {
|
| + 'sources': [
|
| + 'icu_util.cc',
|
| + 'icu_util.h',
|
| + ],
|
| + 'dependencies': [
|
| + '<(DEPTH)/third_party/icu/icu.gyp:*',
|
| + ],
|
| + }],
|
| ],
|
| },
|
| {
|
|
|