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

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: Address Yang's comment. the feature is now harmony_in_progress instead of harmony_staged 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/flag-definitions.h » ('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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 "src/js/harmony-species.js", 394 "src/js/harmony-species.js",
395 "src/js/harmony-unicode-regexps.js", 395 "src/js/harmony-unicode-regexps.js",
396 "src/js/harmony-string-padding.js", 396 "src/js/harmony-string-padding.js",
397 "src/js/promise-extra.js", 397 "src/js/promise-extra.js",
398 ] 398 ]
399 399
400 outputs = [ 400 outputs = [
401 "$target_gen_dir/experimental-libraries.cc", 401 "$target_gen_dir/experimental-libraries.cc",
402 ] 402 ]
403 403
404 if (v8_enable_i18n_support) {
405 sources += [ "src/js/icu-case-mapping.js" ]
406 }
407
404 args = [ 408 args = [
405 rebase_path("$target_gen_dir/experimental-libraries.cc", 409 rebase_path("$target_gen_dir/experimental-libraries.cc",
406 root_build_dir), 410 root_build_dir),
407 "EXPERIMENTAL", 411 "EXPERIMENTAL",
408 ] + rebase_path(sources, root_build_dir) 412 ] + rebase_path(sources, root_build_dir)
409 413
410 if (v8_use_external_startup_data) { 414 if (v8_use_external_startup_data) {
411 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] 415 outputs += [ "$target_gen_dir/libraries_experimental.bin" ]
412 args += [ 416 args += [
413 "--startup_blob", 417 "--startup_blob",
(...skipping 1889 matching lines...) Expand 10 before | Expand all | Expand 10 after
2303 ":v8", 2307 ":v8",
2304 ":v8_libplatform", 2308 ":v8_libplatform",
2305 "//build/config/sanitizers:deps", 2309 "//build/config/sanitizers:deps",
2306 "//build/win:default_exe_manifest", 2310 "//build/win:default_exe_manifest",
2307 ] 2311 ]
2308 2312
2309 if (v8_enable_i18n_support) { 2313 if (v8_enable_i18n_support) {
2310 deps += [ "//third_party/icu" ] 2314 deps += [ "//third_party/icu" ]
2311 } 2315 }
2312 } 2316 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/flag-definitions.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698