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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 ] | 458 ] |
459 | 459 |
460 outputs = [ | 460 outputs = [ |
461 "$target_gen_dir/experimental-libraries.cc", | 461 "$target_gen_dir/experimental-libraries.cc", |
462 ] | 462 ] |
463 | 463 |
464 if (v8_enable_i18n_support) { | 464 if (v8_enable_i18n_support) { |
465 sources += [ | 465 sources += [ |
466 "src/js/datetime-format-to-parts.js", | 466 "src/js/datetime-format-to-parts.js", |
467 "src/js/icu-case-mapping.js", | 467 "src/js/icu-case-mapping.js", |
468 "src/js/intl-extra.js", | |
469 ] | 468 ] |
470 } | 469 } |
471 | 470 |
472 args = [ | 471 args = [ |
473 rebase_path("$target_gen_dir/experimental-libraries.cc", | 472 rebase_path("$target_gen_dir/experimental-libraries.cc", |
474 root_build_dir), | 473 root_build_dir), |
475 "EXPERIMENTAL", | 474 "EXPERIMENTAL", |
476 ] + rebase_path(sources, root_build_dir) | 475 ] + rebase_path(sources, root_build_dir) |
477 | 476 |
478 if (v8_use_external_startup_data) { | 477 if (v8_use_external_startup_data) { |
(...skipping 2292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2771 ":fuzzer_support", | 2770 ":fuzzer_support", |
2772 ":lib_wasm_section_fuzzer", | 2771 ":lib_wasm_section_fuzzer", |
2773 ":wasm_module_runner", | 2772 ":wasm_module_runner", |
2774 ] | 2773 ] |
2775 | 2774 |
2776 configs = [ ":internal_config" ] | 2775 configs = [ ":internal_config" ] |
2777 } | 2776 } |
2778 | 2777 |
2779 v8_fuzzer("wasm_data_section_fuzzer") { | 2778 v8_fuzzer("wasm_data_section_fuzzer") { |
2780 } | 2779 } |
OLD | NEW |