OLD | NEW |
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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 "src/js/macros.py", | 487 "src/js/macros.py", |
488 "src/messages.h", | 488 "src/messages.h", |
489 "src/js/harmony-atomics.js", | 489 "src/js/harmony-atomics.js", |
490 "src/js/harmony-simd.js", | 490 "src/js/harmony-simd.js", |
491 ] | 491 ] |
492 | 492 |
493 outputs = [ | 493 outputs = [ |
494 "$target_gen_dir/experimental-libraries.cc", | 494 "$target_gen_dir/experimental-libraries.cc", |
495 ] | 495 ] |
496 | 496 |
497 if (v8_enable_i18n_support) { | |
498 sources += [ | |
499 "src/js/datetime-format-to-parts.js", | |
500 "src/js/icu-case-mapping.js", | |
501 ] | |
502 } | |
503 | |
504 args = [ | 497 args = [ |
505 rebase_path("$target_gen_dir/experimental-libraries.cc", | 498 rebase_path("$target_gen_dir/experimental-libraries.cc", |
506 root_build_dir), | 499 root_build_dir), |
507 "EXPERIMENTAL", | 500 "EXPERIMENTAL", |
508 ] + rebase_path(sources, root_build_dir) | 501 ] + rebase_path(sources, root_build_dir) |
509 | 502 |
510 if (v8_use_external_startup_data) { | 503 if (v8_use_external_startup_data) { |
511 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] | 504 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] |
512 args += [ | 505 args += [ |
513 "--startup_blob", | 506 "--startup_blob", |
(...skipping 2572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3086 ] | 3079 ] |
3087 | 3080 |
3088 configs = [ | 3081 configs = [ |
3089 ":external_config", | 3082 ":external_config", |
3090 ":internal_config_base", | 3083 ":internal_config_base", |
3091 ] | 3084 ] |
3092 } | 3085 } |
3093 | 3086 |
3094 v8_fuzzer("wasm_data_section_fuzzer") { | 3087 v8_fuzzer("wasm_data_section_fuzzer") { |
3095 } | 3088 } |
OLD | NEW |