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

Side by Side Diff: BUILD.gn

Issue 2273953003: Add support for DateTimeFormat.formatToParts (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update test262.status Created 4 years, 3 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') | no next file with comments »
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/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 "src/js/harmony-simd.js", 432 "src/js/harmony-simd.js",
433 "src/js/harmony-string-padding.js", 433 "src/js/harmony-string-padding.js",
434 ] 434 ]
435 435
436 outputs = [ 436 outputs = [
437 "$target_gen_dir/experimental-libraries.cc", 437 "$target_gen_dir/experimental-libraries.cc",
438 ] 438 ]
439 439
440 if (v8_enable_i18n_support) { 440 if (v8_enable_i18n_support) {
441 sources += [ 441 sources += [
442 "src/js/datetime-format-to-parts.js",
442 "src/js/icu-case-mapping.js", 443 "src/js/icu-case-mapping.js",
443 "src/js/intl-extra.js", 444 "src/js/intl-extra.js",
444 ] 445 ]
445 } 446 }
446 447
447 args = [ 448 args = [
448 rebase_path("$target_gen_dir/experimental-libraries.cc", 449 rebase_path("$target_gen_dir/experimental-libraries.cc",
449 root_build_dir), 450 root_build_dir),
450 "EXPERIMENTAL", 451 "EXPERIMENTAL",
451 ] + rebase_path(sources, root_build_dir) 452 ] + rebase_path(sources, root_build_dir)
(...skipping 2149 matching lines...) Expand 10 before | Expand all | Expand 10 after
2601 2602
2602 deps = [ 2603 deps = [
2603 ":fuzzer_support", 2604 ":fuzzer_support",
2604 ] 2605 ]
2605 2606
2606 configs = [ ":internal_config" ] 2607 configs = [ ":internal_config" ]
2607 } 2608 }
2608 2609
2609 v8_fuzzer("wasm_code_fuzzer") { 2610 v8_fuzzer("wasm_code_fuzzer") {
2610 } 2611 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698