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

Side by Side Diff: gni/v8.gni

Issue 2167723004: Enable v8 backtrace support in all debug builds (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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 the V8 project authors. All rights reserved. 1 # Copyright 2016 the V8 project 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/sanitizers/sanitizers.gni") 5 import("//build/config/sanitizers/sanitizers.gni")
6 import("//build/config/v8_target_cpu.gni") 6 import("//build/config/v8_target_cpu.gni")
7 7
8 declare_args() { 8 declare_args() {
9 # Indicate if valgrind was fetched as a custom deps to make it available on 9 # Indicate if valgrind was fetched as a custom deps to make it available on
10 # swarming. 10 # swarming.
(...skipping 17 matching lines...) Expand all
28 v8_use_external_startup_data = "" 28 v8_use_external_startup_data = ""
29 } 29 }
30 30
31 if (v8_use_external_startup_data == "") { 31 if (v8_use_external_startup_data == "") {
32 # If not specified as a gn arg, use external startup data by default if 32 # If not specified as a gn arg, use external startup data by default if
33 # a snapshot is used and if we're not on ios. 33 # a snapshot is used and if we're not on ios.
34 v8_use_external_startup_data = v8_use_snapshot && !is_ios 34 v8_use_external_startup_data = v8_use_snapshot && !is_ios
35 } 35 }
36 36
37 if (v8_enable_backtrace == "") { 37 if (v8_enable_backtrace == "") {
38 v8_enable_backtrace = is_debug && !v8_optimized_debug 38 v8_enable_backtrace = is_debug
39 } 39 }
40 40
41 ############################################################################### 41 ###############################################################################
42 # Templates 42 # Templates
43 # 43 #
44 44
45 # Points to // in v8 stand-alone or to //v8/ in chromium. We need absolute 45 # Points to // in v8 stand-alone or to //v8/ in chromium. We need absolute
46 # paths for all configs in templates as they are shared in different 46 # paths for all configs in templates as they are shared in different
47 # subdirectories. 47 # subdirectories.
48 v8_path_prefix = get_path_info("../", "abspath") 48 v8_path_prefix = get_path_info("../", "abspath")
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 } 99 }
100 100
101 template("v8_component") { 101 template("v8_component") {
102 component(target_name) { 102 component(target_name) {
103 forward_variables_from(invoker, "*", [ "configs" ]) 103 forward_variables_from(invoker, "*", [ "configs" ])
104 configs += invoker.configs 104 configs += invoker.configs
105 configs -= v8_remove_configs 105 configs -= v8_remove_configs
106 configs += v8_add_configs 106 configs += v8_add_configs
107 } 107 }
108 } 108 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698