From c9ae2a780aacc5d1f5c0f476b51cc47746cea3c7 Mon Sep 17 00:00:00 2001 From: bridiver Date: Mon, 19 Dec 2016 00:34:12 -0700 Subject: [PATCH] turn off snapshots and external data for v8 fixes https://github.com/brave/browser-laptop/issues/5879 auditors @bbondy @bsclifton --- build/commands/lib/config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/commands/lib/config.js b/build/commands/lib/config.js index 1644b1247c6e..9793705f5c71 100644 --- a/build/commands/lib/config.js +++ b/build/commands/lib/config.js @@ -41,6 +41,8 @@ Config.prototype.buildArgs = function () { return { root_extra_deps: [ "//electron" ], + v8_use_external_startup_data: false, + v8_use_snapshot: false, is_component_build: this.buildConfig !== 'Release', enable_nacl: false, proprietary_codecs: true,