Index: gni/isolate.gni |
diff --git a/gni/isolate.gni b/gni/isolate.gni |
index a5e1937368b88be594aebeeca6358f7fb5447495..4626002113951de7f0a8068a0c7f5dabdcd56d50 100644 |
--- a/gni/isolate.gni |
+++ b/gni/isolate.gni |
@@ -96,9 +96,9 @@ template("v8_isolate_run") { |
use_external_startup_data = "0" |
} |
if (v8_use_snapshot) { |
- use_snapshot = "1" |
+ use_snapshot = "true" |
Michael Achenbach
2016/06/07 07:59:28
"true", really? Yes :/
|
} else { |
- use_snapshot = "0" |
+ use_snapshot = "false" |
} |
# Note, all paths will be rebased in isolate_driver.py to be relative to |