| 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 | |
| 51 # Interpreted regexp engine exists as platform-independent alternative | 47 # Interpreted regexp engine exists as platform-independent alternative |
| 52 # based where the regular expression is compiled to a bytecode. | 48 # based where the regular expression is compiled to a bytecode. |
| 53 v8_interpreted_regexp = false | 49 v8_interpreted_regexp = false |
| 54 | 50 |
| 55 # Sets -dOBJECT_PRINT. | 51 # Sets -dOBJECT_PRINT. |
| 56 v8_object_print = false | 52 v8_object_print = false |
| 57 | 53 |
| 58 # With post mortem support enabled, metadata is embedded into libv8 that | 54 # With post mortem support enabled, metadata is embedded into libv8 that |
| 59 # describes various parameters of the VM for use by debuggers. See | 55 # describes various parameters of the VM for use by debuggers. See |
| 60 # tools/gen-postmortem-metadata.py for details. | 56 # tools/gen-postmortem-metadata.py for details. |
| (...skipping 2290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2351 | 2347 |
| 2352 deps = [ | 2348 deps = [ |
| 2353 ":fuzzer_support", | 2349 ":fuzzer_support", |
| 2354 ] | 2350 ] |
| 2355 | 2351 |
| 2356 configs = [ ":internal_config" ] | 2352 configs = [ ":internal_config" ] |
| 2357 } | 2353 } |
| 2358 | 2354 |
| 2359 v8_fuzzer("wasm_asmjs_fuzzer") { | 2355 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2360 } | 2356 } |
| OLD | NEW |