Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Unified Diff: tools/gyp/v8.gyp

Issue 1812673005: Use ICU case conversion/transliterator for case conversion behind a flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: working with icu-case-mapping.js manually compiled in; gyp change not picking it up Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/gyp/v8.gyp
diff --git a/tools/gyp/v8.gyp b/tools/gyp/v8.gyp
index 837daa343249a707e0a5db1c6095570ab52ad3a0..9122caa1d3a2f0c7cd859dc6abbc061305088d37 100644
--- a/tools/gyp/v8.gyp
+++ b/tools/gyp/v8.gyp
@@ -1971,17 +1971,6 @@
}, {
jochen (gone - plz use gerrit) 2016/04/29 06:58:09 this file doesn't exist anymore, it's now in src/
jungshik at Google 2016/04/29 18:03:23 rebased. Thanks !
'toolsets': ['target'],
}],
- ['v8_enable_i18n_support==1', {
- 'variables': {
- 'i18n_library_files': [
- '../../src/js/i18n.js',
- ],
- },
- }, {
- 'variables': {
- 'i18n_library_files': [],
- },
- }],
],
'variables': {
'library_files': [
@@ -2031,6 +2020,12 @@
'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-experimental.bin',
'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extras.bin',
'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-experimental-extras.bin',
+ 'conditions': [
+ ['v8_enable_i18n_support==1', {
+ 'library_files': ['../../src/js/i18n.js'],
+ 'experimental_library_files': ['../../src/js/icu-case-mapping.js'],
jungshik at Google 2016/04/29 06:23:17 For some reason, icu-case-mapping.js is never adde
jochen (gone - plz use gerrit) 2016/04/29 06:58:09 gyp is a bit peculiar here. I'd recommend to keep
+ }],
+ ],
},
'actions': [
{
@@ -2038,7 +2033,6 @@
'inputs': [
'../../tools/js2c.py',
'<@(library_files)',
- '<@(i18n_library_files)'
],
'outputs': ['<(SHARED_INTERMEDIATE_DIR)/libraries.cc'],
'action': [
@@ -2047,7 +2041,6 @@
'<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
'CORE',
'<@(library_files)',
- '<@(i18n_library_files)'
],
},
{
@@ -2055,7 +2048,6 @@
'inputs': [
'../../tools/js2c.py',
'<@(library_files)',
- '<@(i18n_library_files)'
],
'outputs': ['<@(libraries_bin_file)'],
'action': [
@@ -2064,7 +2056,6 @@
'<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
'CORE',
'<@(library_files)',
- '<@(i18n_library_files)',
'--startup_blob', '<@(libraries_bin_file)',
'--nojs',
],
« test/test262/test262.status ('K') | « test/webkit/fast/js/string-capitalization-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698