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

Side by Side Diff: BUILD.gn

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: move toLocale{U,L}Case behind --icu-case-mapping, too; adjust test status accordingly. roll back st… Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/js/icu-case-mapping.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/mips.gni") 7 import("//build/config/mips.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 "src/js/harmony-species.js", 393 "src/js/harmony-species.js",
394 "src/js/harmony-unicode-regexps.js", 394 "src/js/harmony-unicode-regexps.js",
395 "src/js/harmony-string-padding.js", 395 "src/js/harmony-string-padding.js",
396 "src/js/promise-extra.js", 396 "src/js/promise-extra.js",
397 ] 397 ]
398 398
399 outputs = [ 399 outputs = [
400 "$target_gen_dir/experimental-libraries.cc", 400 "$target_gen_dir/experimental-libraries.cc",
401 ] 401 ]
402 402
403 if (v8_enable_i18n_support) {
404 sources += [ "src/js/icu-case-mapping.js" ]
405 }
406
403 args = [ 407 args = [
404 rebase_path("$target_gen_dir/experimental-libraries.cc", 408 rebase_path("$target_gen_dir/experimental-libraries.cc",
405 root_build_dir), 409 root_build_dir),
406 "EXPERIMENTAL", 410 "EXPERIMENTAL",
407 ] + rebase_path(sources, root_build_dir) 411 ] + rebase_path(sources, root_build_dir)
408 412
409 if (v8_use_external_startup_data) { 413 if (v8_use_external_startup_data) {
410 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] 414 outputs += [ "$target_gen_dir/libraries_experimental.bin" ]
411 args += [ 415 args += [
412 "--startup_blob", 416 "--startup_blob",
(...skipping 1801 matching lines...) Expand 10 before | Expand all | Expand 10 after
2214 2218
2215 configs -= [ "//build/config/compiler:chromium_code" ] 2219 configs -= [ "//build/config/compiler:chromium_code" ]
2216 configs += [ "//build/config/compiler:no_chromium_code" ] 2220 configs += [ "//build/config/compiler:no_chromium_code" ]
2217 configs += [ 2221 configs += [
2218 ":internal_config", 2222 ":internal_config",
2219 ":libplatform_config", 2223 ":libplatform_config",
2220 ":features", 2224 ":features",
2221 ":toolchain", 2225 ":toolchain",
2222 ] 2226 ]
2223 } 2227 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/js/icu-case-mapping.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698