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

Side by Side Diff: BUILD.gn

Issue 2462613002: [not for landing] Debugging gpu failures
Patch Set: more checks Created 4 years, 1 month 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 | gypfiles/features.gypi » ('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 17 matching lines...) Expand all
28 # Enable compiler warnings when using V8_DEPRECATED apis. 28 # Enable compiler warnings when using V8_DEPRECATED apis.
29 v8_deprecation_warnings = false 29 v8_deprecation_warnings = false
30 30
31 # Enable compiler warnings when using V8_DEPRECATE_SOON apis. 31 # Enable compiler warnings when using V8_DEPRECATE_SOON apis.
32 v8_imminent_deprecation_warnings = "" 32 v8_imminent_deprecation_warnings = ""
33 33
34 # Embeds the given script into the snapshot. 34 # Embeds the given script into the snapshot.
35 v8_embed_script = "" 35 v8_embed_script = ""
36 36
37 # Sets -dENABLE_DISASSEMBLER. 37 # Sets -dENABLE_DISASSEMBLER.
38 v8_enable_disassembler = "" 38 v8_enable_disassembler = true
39 39
40 # Sets -dENABLE_GDB_JIT_INTERFACE. 40 # Sets -dENABLE_GDB_JIT_INTERFACE.
41 v8_enable_gdbjit = "" 41 v8_enable_gdbjit = ""
42 42
43 # Sets -dENABLE_HANDLE_ZAPPING. 43 # Sets -dENABLE_HANDLE_ZAPPING.
44 v8_enable_handle_zapping = true 44 v8_enable_handle_zapping = true
45 45
46 # Enable ECMAScript Internationalization API. Enabling this feature will 46 # Enable ECMAScript Internationalization API. Enabling this feature will
47 # add a dependency on the ICU library. 47 # add a dependency on the ICU library.
48 v8_enable_i18n_support = true 48 v8_enable_i18n_support = true
49 49
50 # Enable slow dchecks. 50 # Enable slow dchecks.
51 v8_enable_slow_dchecks = false 51 v8_enable_slow_dchecks = false
52 52
53 # Interpreted regexp engine exists as platform-independent alternative 53 # Interpreted regexp engine exists as platform-independent alternative
54 # based where the regular expression is compiled to a bytecode. 54 # based where the regular expression is compiled to a bytecode.
55 v8_interpreted_regexp = false 55 v8_interpreted_regexp = false
56 56
57 # Sets -dOBJECT_PRINT. 57 # Sets -dOBJECT_PRINT.
58 v8_object_print = "" 58 v8_object_print = true
59 59
60 # With post mortem support enabled, metadata is embedded into libv8 that 60 # With post mortem support enabled, metadata is embedded into libv8 that
61 # describes various parameters of the VM for use by debuggers. See 61 # describes various parameters of the VM for use by debuggers. See
62 # tools/gen-postmortem-metadata.py for details. 62 # tools/gen-postmortem-metadata.py for details.
63 v8_postmortem_support = false 63 v8_postmortem_support = false
64 64
65 # Switches off inlining in V8. 65 # Switches off inlining in V8.
66 v8_no_inline = false 66 v8_no_inline = false
67 67
68 # Similar to vfp but on MIPS. 68 # Similar to vfp but on MIPS.
(...skipping 2908 matching lines...) Expand 10 before | Expand all | Expand 10 after
2977 ] 2977 ]
2978 2978
2979 configs = [ 2979 configs = [
2980 ":external_config", 2980 ":external_config",
2981 ":internal_config_base", 2981 ":internal_config_base",
2982 ] 2982 ]
2983 } 2983 }
2984 2984
2985 v8_fuzzer("wasm_data_section_fuzzer") { 2985 v8_fuzzer("wasm_data_section_fuzzer") {
2986 } 2986 }
OLDNEW
« no previous file with comments | « no previous file | gypfiles/features.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698