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

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: explain why UDAT_*FILEDS cannot show up 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') | 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/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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 "src/js/harmony-string-padding.js", 433 "src/js/harmony-string-padding.js",
434 "src/js/promise-extra.js", 434 "src/js/promise-extra.js",
435 ] 435 ]
436 436
437 outputs = [ 437 outputs = [
438 "$target_gen_dir/experimental-libraries.cc", 438 "$target_gen_dir/experimental-libraries.cc",
439 ] 439 ]
440 440
441 if (v8_enable_i18n_support) { 441 if (v8_enable_i18n_support) {
442 sources += [ 442 sources += [
443 "src/js/datetime-format-to-parts.js",
443 "src/js/icu-case-mapping.js", 444 "src/js/icu-case-mapping.js",
444 "src/js/intl-extra.js", 445 "src/js/intl-extra.js",
445 ] 446 ]
446 } 447 }
447 448
448 args = [ 449 args = [
449 rebase_path("$target_gen_dir/experimental-libraries.cc", 450 rebase_path("$target_gen_dir/experimental-libraries.cc",
450 root_build_dir), 451 root_build_dir),
451 "EXPERIMENTAL", 452 "EXPERIMENTAL",
452 ] + rebase_path(sources, root_build_dir) 453 ] + rebase_path(sources, root_build_dir)
(...skipping 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 "src/base/sys-info.h", 2076 "src/base/sys-info.h",
2076 "src/base/utils/random-number-generator.cc", 2077 "src/base/utils/random-number-generator.cc",
2077 "src/base/utils/random-number-generator.h", 2078 "src/base/utils/random-number-generator.h",
2078 ] 2079 ]
2079 2080
2080 configs = [ ":internal_config_base" ] 2081 configs = [ ":internal_config_base" ]
2081 2082
2082 defines = [] 2083 defines = []
2083 2084
2084 if (is_posix) { 2085 if (is_posix) {
2085 sources += [ 2086 sources += [ "src/base/platform/platform-posix.cc" ]
2086 "src/base/platform/platform-posix.cc",
2087 ]
2088 } 2087 }
2089 2088
2090 if (is_linux) { 2089 if (is_linux) {
2091 sources += [ 2090 sources += [
2092 "src/base/debug/stack_trace_posix.cc", 2091 "src/base/debug/stack_trace_posix.cc",
2093 "src/base/platform/platform-linux.cc", 2092 "src/base/platform/platform-linux.cc",
2094 ] 2093 ]
2095 2094
2096 libs = [ 2095 libs = [
2097 "dl", 2096 "dl",
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
2565 2564
2566 deps = [ 2565 deps = [
2567 ":fuzzer_support", 2566 ":fuzzer_support",
2568 ] 2567 ]
2569 2568
2570 configs = [ ":internal_config" ] 2569 configs = [ ":internal_config" ]
2571 } 2570 }
2572 2571
2573 v8_fuzzer("wasm_asmjs_fuzzer") { 2572 v8_fuzzer("wasm_asmjs_fuzzer") {
2574 } 2573 }
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