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

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: Yang's comment addressed - return right away for no-change 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/i18n.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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 "src/js/harmony-species.js", 399 "src/js/harmony-species.js",
400 "src/js/harmony-unicode-regexps.js", 400 "src/js/harmony-unicode-regexps.js",
401 "src/js/harmony-string-padding.js", 401 "src/js/harmony-string-padding.js",
402 "src/js/promise-extra.js", 402 "src/js/promise-extra.js",
403 ] 403 ]
404 404
405 outputs = [ 405 outputs = [
406 "$target_gen_dir/experimental-libraries.cc", 406 "$target_gen_dir/experimental-libraries.cc",
407 ] 407 ]
408 408
409 if (v8_enable_i18n_support) {
410 sources += [ "src/js/icu-case-mapping.js" ]
411 }
412
409 args = [ 413 args = [
410 rebase_path("$target_gen_dir/experimental-libraries.cc", 414 rebase_path("$target_gen_dir/experimental-libraries.cc",
411 root_build_dir), 415 root_build_dir),
412 "EXPERIMENTAL", 416 "EXPERIMENTAL",
413 ] + rebase_path(sources, root_build_dir) 417 ] + rebase_path(sources, root_build_dir)
414 418
415 if (v8_use_external_startup_data) { 419 if (v8_use_external_startup_data) {
416 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] 420 outputs += [ "$target_gen_dir/libraries_experimental.bin" ]
417 args += [ 421 args += [
418 "--startup_blob", 422 "--startup_blob",
(...skipping 1831 matching lines...) Expand 10 before | Expand all | Expand 10 after
2250 2254
2251 configs -= [ "//build/config/compiler:chromium_code" ] 2255 configs -= [ "//build/config/compiler:chromium_code" ]
2252 configs += [ "//build/config/compiler:no_chromium_code" ] 2256 configs += [ "//build/config/compiler:no_chromium_code" ]
2253 configs += [ 2257 configs += [
2254 ":internal_config", 2258 ":internal_config",
2255 ":libplatform_config", 2259 ":libplatform_config",
2256 ":features", 2260 ":features",
2257 ":toolchain", 2261 ":toolchain",
2258 ] 2262 ]
2259 } 2263 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/js/i18n.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698