Chromium Code Reviews| Index: gni/v8.gni |
| diff --git a/gni/v8.gni b/gni/v8.gni |
| index 7ff7f6fb89ac3634a2c7ff64030805582d8c8fb9..f36966dc9451863c5c9303980cf8323de00cc122 100644 |
| --- a/gni/v8.gni |
| +++ b/gni/v8.gni |
| @@ -95,6 +95,10 @@ template("v8_executable") { |
| # For enabling ASLR. |
| ldflags = [ "-pie" ] |
| } |
| + 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
|
| + configs -= [ "//build/config/win:default_incremental_linking" ] |
| + configs += [ "//build/config/win:no_incremental_linking" ] |
| + } |
| } |
| } |