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

Unified Diff: gni/isolate.gni

Issue 2109293004: [gn] Switch basic linux32 bots to gn (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | gni/v8.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gni/isolate.gni
diff --git a/gni/isolate.gni b/gni/isolate.gni
index c2c025ce0c19f3a020c00ee60db71c1dff007602..d78a5e550010f7bdc2a1f18b7de5021ecb06db29 100644
--- a/gni/isolate.gni
+++ b/gni/isolate.gni
@@ -106,6 +106,12 @@ template("v8_isolate_run") {
} else {
has_valgrind = "0"
}
+ if (v8_gcmole) {
+ gcmole = "1"
+ } else {
+ gcmole = "0"
+ }
+
# Note, all paths will be rebased in isolate_driver.py to be relative to
# the isolate file.
@@ -135,7 +141,7 @@ template("v8_isolate_run") {
"--config-variable",
"cfi_vptr=$cfi_vptr",
"--config-variable",
- "gcmole=0",
+ "gcmole=$gcmole",
"--config-variable",
"has_valgrind=$has_valgrind",
"--config-variable",
« no previous file with comments | « BUILD.gn ('k') | gni/v8.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698