Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: BUILD.gn

Issue 2109403002: [gn] Fix valgrind config (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | gni/isolate.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | gni/isolate.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698