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

Side by Side Diff: gni/v8.gni

Issue 2409133002: [build] Disable incremental linking for cctest and unittests (Closed)
Patch Set: Created 4 years, 2 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 | test/cctest/BUILD.gn » ('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 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 template("v8_executable") { 88 template("v8_executable") {
89 executable(target_name) { 89 executable(target_name) {
90 forward_variables_from(invoker, "*", [ "configs" ]) 90 forward_variables_from(invoker, "*", [ "configs" ])
91 configs += invoker.configs 91 configs += invoker.configs
92 configs -= v8_remove_configs 92 configs -= v8_remove_configs
93 configs += v8_add_configs 93 configs += v8_add_configs
94 if (is_linux) { 94 if (is_linux) {
95 # For enabling ASLR. 95 # For enabling ASLR.
96 ldflags = [ "-pie" ] 96 ldflags = [ "-pie" ]
97 } 97 }
98 if (defined(no_incremental_linking) && no_incremental_linking && is_win) {
vogelheim 2016/10/11 13:11:37 I thought "defined(X) && X" was an anti-pattern th
Michael Achenbach 2016/10/12 07:32:08 That's how templates seem to be designed. There's
99 configs -= [ "//build/config/win:default_incremental_linking" ]
100 configs += [ "//build/config/win:no_incremental_linking" ]
101 }
98 } 102 }
99 } 103 }
100 104
101 template("v8_component") { 105 template("v8_component") {
102 component(target_name) { 106 component(target_name) {
103 forward_variables_from(invoker, "*", [ "configs" ]) 107 forward_variables_from(invoker, "*", [ "configs" ])
104 configs += invoker.configs 108 configs += invoker.configs
105 configs -= v8_remove_configs 109 configs -= v8_remove_configs
106 configs += v8_add_configs 110 configs += v8_add_configs
107 } 111 }
108 } 112 }
OLDNEW
« no previous file with comments | « no previous file | test/cctest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698