From 586db2414a338e1bf6eaf6e672a3adc7ce309f6a Mon Sep 17 00:00:00 2001 From: Michaƫl Zasso Date: Fri, 7 Sep 2018 17:07:13 +0200 Subject: deps: update V8 to 6.9.427.22 PR-URL: https://github.com/nodejs/node/pull/21983 Reviewed-By: Refael Ackermann Reviewed-By: Gus Caplan Reviewed-By: Ujjwal Sharma Reviewed-By: Matteo Collina --- deps/v8/gni/v8.gni | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'deps/v8/gni') diff --git a/deps/v8/gni/v8.gni b/deps/v8/gni/v8.gni index 1cbba9fefd..a5312f76ac 100644 --- a/deps/v8/gni/v8.gni +++ b/deps/v8/gni/v8.gni @@ -38,7 +38,7 @@ declare_args() { v8_use_snapshot = !(is_win && host_os != "win" && target_cpu == "x64") # Enable several snapshots side-by-side (e.g. default and for trusted code). - v8_use_multi_snapshots = "" + v8_use_multi_snapshots = false # Use external files for startup data blobs: # the JS builtins sources and the start snapshot. @@ -61,7 +61,10 @@ if (v8_use_external_startup_data == "") { v8_use_external_startup_data = v8_use_snapshot && !is_ios } -if (v8_use_multi_snapshots == "") { +if (v8_use_multi_snapshots) { + # Silently disable multi snapshots if they're incompatible with the current + # build configuration. This allows us to set v8_use_multi_snapshots=true on + # all bots, and e.g. no-snapshot bots will automatically do the right thing. v8_use_multi_snapshots = v8_use_external_startup_data && !build_with_chromium && !use_jumbo_build } -- cgit v1.2.3