| 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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 rebase_path("$root_out_dir/v8_build_config.json", root_build_dir), | 715 rebase_path("$root_out_dir/v8_build_config.json", root_build_dir), |
| 716 "dcheck_always_on=$dcheck_always_on", | 716 "dcheck_always_on=$dcheck_always_on", |
| 717 "is_asan=$is_asan", | 717 "is_asan=$is_asan", |
| 718 "is_cfi=$is_cfi", | 718 "is_cfi=$is_cfi", |
| 719 "is_component_build=$is_component_build", | 719 "is_component_build=$is_component_build", |
| 720 "is_debug=$is_debug", | 720 "is_debug=$is_debug", |
| 721 "is_msan=$is_msan", | 721 "is_msan=$is_msan", |
| 722 "is_tsan=$is_tsan", | 722 "is_tsan=$is_tsan", |
| 723 "target_cpu=\"$target_cpu\"", | 723 "target_cpu=\"$target_cpu\"", |
| 724 "v8_enable_i18n_support=$v8_enable_i18n_support", | 724 "v8_enable_i18n_support=$v8_enable_i18n_support", |
| 725 "v8_enable_inspector=$v8_enable_inspector_override", |
| 725 "v8_target_cpu=\"$v8_target_cpu\"", | 726 "v8_target_cpu=\"$v8_target_cpu\"", |
| 726 "v8_use_snapshot=$v8_use_snapshot", | 727 "v8_use_snapshot=$v8_use_snapshot", |
| 727 ] | 728 ] |
| 728 } | 729 } |
| 729 | 730 |
| 730 ############################################################################### | 731 ############################################################################### |
| 731 # Source Sets (aka static libraries) | 732 # Source Sets (aka static libraries) |
| 732 # | 733 # |
| 733 | 734 |
| 734 source_set("v8_maybe_snapshot") { | 735 source_set("v8_maybe_snapshot") { |
| (...skipping 2220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2955 ] | 2956 ] |
| 2956 | 2957 |
| 2957 configs = [ | 2958 configs = [ |
| 2958 ":external_config", | 2959 ":external_config", |
| 2959 ":internal_config_base", | 2960 ":internal_config_base", |
| 2960 ] | 2961 ] |
| 2961 } | 2962 } |
| 2962 | 2963 |
| 2963 v8_fuzzer("wasm_data_section_fuzzer") { | 2964 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2964 } | 2965 } |
| OLD | NEW |