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 26 matching lines...) Expand all Loading... |
37 # Sets -dENABLE_HANDLE_ZAPPING. | 37 # Sets -dENABLE_HANDLE_ZAPPING. |
38 v8_enable_handle_zapping = true | 38 v8_enable_handle_zapping = true |
39 | 39 |
40 # Enable ECMAScript Internationalization API. Enabling this feature will | 40 # Enable ECMAScript Internationalization API. Enabling this feature will |
41 # add a dependency on the ICU library. | 41 # add a dependency on the ICU library. |
42 v8_enable_i18n_support = true | 42 v8_enable_i18n_support = true |
43 | 43 |
44 # Enable slow dchecks. | 44 # Enable slow dchecks. |
45 v8_enable_slow_dchecks = false | 45 v8_enable_slow_dchecks = false |
46 | 46 |
| 47 # Indicate if valgrind was fetched as a custom deps to make it available on |
| 48 # swarming. |
| 49 v8_has_valgrind = false |
| 50 |
47 # Interpreted regexp engine exists as platform-independent alternative | 51 # Interpreted regexp engine exists as platform-independent alternative |
48 # based where the regular expression is compiled to a bytecode. | 52 # based where the regular expression is compiled to a bytecode. |
49 v8_interpreted_regexp = false | 53 v8_interpreted_regexp = false |
50 | 54 |
51 # Sets -dOBJECT_PRINT. | 55 # Sets -dOBJECT_PRINT. |
52 v8_object_print = false | 56 v8_object_print = false |
53 | 57 |
54 # With post mortem support enabled, metadata is embedded into libv8 that | 58 # With post mortem support enabled, metadata is embedded into libv8 that |
55 # describes various parameters of the VM for use by debuggers. See | 59 # describes various parameters of the VM for use by debuggers. See |
56 # tools/gen-postmortem-metadata.py for details. | 60 # tools/gen-postmortem-metadata.py for details. |
(...skipping 2290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2347 | 2351 |
2348 deps = [ | 2352 deps = [ |
2349 ":fuzzer_support", | 2353 ":fuzzer_support", |
2350 ] | 2354 ] |
2351 | 2355 |
2352 configs = [ ":internal_config" ] | 2356 configs = [ ":internal_config" ] |
2353 } | 2357 } |
2354 | 2358 |
2355 v8_fuzzer("wasm_asmjs_fuzzer") { | 2359 v8_fuzzer("wasm_asmjs_fuzzer") { |
2356 } | 2360 } |
OLD | NEW |