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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 # Sets -dENABLE_DISASSEMBLER. | 44 # Sets -dENABLE_DISASSEMBLER. |
45 v8_enable_disassembler = "" | 45 v8_enable_disassembler = "" |
46 | 46 |
47 # Sets -dENABLE_GDB_JIT_INTERFACE. | 47 # Sets -dENABLE_GDB_JIT_INTERFACE. |
48 v8_enable_gdbjit = "" | 48 v8_enable_gdbjit = "" |
49 | 49 |
50 # Sets -dENABLE_VTUNE_JIT_INTERFACE. | 50 # Sets -dENABLE_VTUNE_JIT_INTERFACE. |
51 v8_enable_vtunejit = false | 51 v8_enable_vtunejit = false |
52 | 52 |
53 # Sets -dENABLE_HANDLE_ZAPPING. | 53 # Sets -dENABLE_HANDLE_ZAPPING. |
54 v8_enable_handle_zapping = true | 54 v8_enable_handle_zapping = is_debug |
55 | 55 |
56 # Enable slow dchecks. | 56 # Enable slow dchecks. |
57 v8_enable_slow_dchecks = false | 57 v8_enable_slow_dchecks = false |
58 | 58 |
59 # Enable code-generation-time checking of types in the CodeStubAssembler. | 59 # Enable code-generation-time checking of types in the CodeStubAssembler. |
60 v8_enable_verify_csa = false | 60 v8_enable_verify_csa = false |
61 | 61 |
62 # Interpreted regexp engine exists as platform-independent alternative | 62 # Interpreted regexp engine exists as platform-independent alternative |
63 # based where the regular expression is compiled to a bytecode. | 63 # based where the regular expression is compiled to a bytecode. |
64 v8_interpreted_regexp = false | 64 v8_interpreted_regexp = false |
(...skipping 3128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3193 ] | 3193 ] |
3194 | 3194 |
3195 configs = [ | 3195 configs = [ |
3196 ":external_config", | 3196 ":external_config", |
3197 ":internal_config_base", | 3197 ":internal_config_base", |
3198 ] | 3198 ] |
3199 } | 3199 } |
3200 | 3200 |
3201 v8_fuzzer("wasm_compile_fuzzer") { | 3201 v8_fuzzer("wasm_compile_fuzzer") { |
3202 } | 3202 } |
OLD | NEW |