From a0bdb103b676b4c7fa6b9f2e7149e716549c05d1 Mon Sep 17 00:00:00 2001 From: vogelheim Date: Wed, 4 Mar 2015 04:21:52 -0800 Subject: [PATCH] Default-enable external startup data for Linux for stand-alone builds. Notes: - Other platforms to follow later. - This follows Chromium practice, that mostly uses this feature these days. - The statically linked-in startup data will stay. So whoever prefers the old way just needs to set the flag differently. Reland crrev.com/959693002, once crrev.com/960883003 is in. R=machenbach@chromium.org BUG= Review URL: https://codereview.chromium.org/956373002 Cr-Commit-Position: refs/heads/master@{#26980} --- build/standalone.gypi | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/standalone.gypi b/build/standalone.gypi index e09952b1ff..5c31fb5d27 100644 --- a/build/standalone.gypi +++ b/build/standalone.gypi @@ -152,6 +152,11 @@ }, { 'clang%': 0, }], + ['(OS=="linux")', { + # Gradually roll out v8_use_external_startup_data. + # Should eventually be default enabled on all platforms. + 'v8_use_external_startup_data%': 1, + }], ], # Default ARM variable settings. 'arm_version%': 'default',