| 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 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 rebase_path("$root_out_dir/v8_build_config.json", root_build_dir), | 717 rebase_path("$root_out_dir/v8_build_config.json", root_build_dir), |
| 718 "dcheck_always_on=$dcheck_always_on", | 718 "dcheck_always_on=$dcheck_always_on", |
| 719 "is_asan=$is_asan", | 719 "is_asan=$is_asan", |
| 720 "is_cfi=$is_cfi", | 720 "is_cfi=$is_cfi", |
| 721 "is_component_build=$is_component_build", | 721 "is_component_build=$is_component_build", |
| 722 "is_debug=$is_debug", | 722 "is_debug=$is_debug", |
| 723 "is_msan=$is_msan", | 723 "is_msan=$is_msan", |
| 724 "is_tsan=$is_tsan", | 724 "is_tsan=$is_tsan", |
| 725 "target_cpu=\"$target_cpu\"", | 725 "target_cpu=\"$target_cpu\"", |
| 726 "v8_enable_i18n_support=$v8_enable_i18n_support", | 726 "v8_enable_i18n_support=$v8_enable_i18n_support", |
| 727 "v8_enable_inspector=$v8_enable_inspector_override", |
| 727 "v8_target_cpu=\"$v8_target_cpu\"", | 728 "v8_target_cpu=\"$v8_target_cpu\"", |
| 728 "v8_use_snapshot=$v8_use_snapshot", | 729 "v8_use_snapshot=$v8_use_snapshot", |
| 729 ] | 730 ] |
| 730 } | 731 } |
| 731 | 732 |
| 732 ############################################################################### | 733 ############################################################################### |
| 733 # Source Sets (aka static libraries) | 734 # Source Sets (aka static libraries) |
| 734 # | 735 # |
| 735 | 736 |
| 736 source_set("v8_maybe_snapshot") { | 737 source_set("v8_maybe_snapshot") { |
| (...skipping 2244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2981 ] | 2982 ] |
| 2982 | 2983 |
| 2983 configs = [ | 2984 configs = [ |
| 2984 ":external_config", | 2985 ":external_config", |
| 2985 ":internal_config_base", | 2986 ":internal_config_base", |
| 2986 ] | 2987 ] |
| 2987 } | 2988 } |
| 2988 | 2989 |
| 2989 v8_fuzzer("wasm_data_section_fuzzer") { | 2990 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2990 } | 2991 } |
| OLD | NEW |