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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 sources = [ | 492 sources = [ |
493 "src/js/macros.py", | 493 "src/js/macros.py", |
494 "src/messages.h", | 494 "src/messages.h", |
495 "src/js/harmony-atomics.js", | 495 "src/js/harmony-atomics.js", |
496 ] | 496 ] |
497 | 497 |
498 outputs = [ | 498 outputs = [ |
499 "$target_gen_dir/experimental-libraries.cc", | 499 "$target_gen_dir/experimental-libraries.cc", |
500 ] | 500 ] |
501 | 501 |
502 if (v8_enable_i18n_support) { | |
503 sources += [ | |
504 "src/js/datetime-format-to-parts.js", | |
505 "src/js/icu-case-mapping.js", | |
506 ] | |
507 } | |
508 | |
509 args = [ | 502 args = [ |
510 rebase_path("$target_gen_dir/experimental-libraries.cc", | 503 rebase_path("$target_gen_dir/experimental-libraries.cc", |
511 root_build_dir), | 504 root_build_dir), |
512 "EXPERIMENTAL", | 505 "EXPERIMENTAL", |
513 ] + rebase_path(sources, root_build_dir) | 506 ] + rebase_path(sources, root_build_dir) |
514 | 507 |
515 if (v8_use_external_startup_data) { | 508 if (v8_use_external_startup_data) { |
516 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] | 509 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] |
517 args += [ | 510 args += [ |
518 "--startup_blob", | 511 "--startup_blob", |
(...skipping 2582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3101 ] | 3094 ] |
3102 | 3095 |
3103 configs = [ | 3096 configs = [ |
3104 ":external_config", | 3097 ":external_config", |
3105 ":internal_config_base", | 3098 ":internal_config_base", |
3106 ] | 3099 ] |
3107 } | 3100 } |
3108 | 3101 |
3109 v8_fuzzer("wasm_data_section_fuzzer") { | 3102 v8_fuzzer("wasm_data_section_fuzzer") { |
3110 } | 3103 } |
OLD | NEW |