| 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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |