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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 # Enable compiler warnings when using V8_DEPRECATED apis. | 25 # Enable compiler warnings when using V8_DEPRECATED apis. |
26 v8_deprecation_warnings = false | 26 v8_deprecation_warnings = false |
27 | 27 |
28 # Enable compiler warnings when using V8_DEPRECATE_SOON apis. | 28 # Enable compiler warnings when using V8_DEPRECATE_SOON apis. |
29 v8_imminent_deprecation_warnings = "" | 29 v8_imminent_deprecation_warnings = "" |
30 | 30 |
31 # Embeds the given script into the snapshot. | 31 # Embeds the given script into the snapshot. |
32 v8_embed_script = "" | 32 v8_embed_script = "" |
33 | 33 |
| 34 # Support for backtrace_symbols on linux. |
| 35 v8_enable_backtrace = false |
| 36 |
34 # Sets -dENABLE_DISASSEMBLER. | 37 # Sets -dENABLE_DISASSEMBLER. |
35 v8_enable_disassembler = false | 38 v8_enable_disassembler = false |
36 | 39 |
37 # Sets -dENABLE_GDB_JIT_INTERFACE. | 40 # Sets -dENABLE_GDB_JIT_INTERFACE. |
38 v8_enable_gdbjit = "" | 41 v8_enable_gdbjit = "" |
39 | 42 |
40 # Sets -dENABLE_HANDLE_ZAPPING. | 43 # Sets -dENABLE_HANDLE_ZAPPING. |
41 v8_enable_handle_zapping = true | 44 v8_enable_handle_zapping = true |
42 | 45 |
43 # Enable ECMAScript Internationalization API. Enabling this feature will | 46 # Enable ECMAScript Internationalization API. Enabling this feature will |
(...skipping 2462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2506 | 2509 |
2507 deps = [ | 2510 deps = [ |
2508 ":fuzzer_support", | 2511 ":fuzzer_support", |
2509 ] | 2512 ] |
2510 | 2513 |
2511 configs = [ ":internal_config" ] | 2514 configs = [ ":internal_config" ] |
2512 } | 2515 } |
2513 | 2516 |
2514 v8_fuzzer("wasm_asmjs_fuzzer") { | 2517 v8_fuzzer("wasm_asmjs_fuzzer") { |
2515 } | 2518 } |
OLD | NEW |