From 4310cd02d2160b1457baed81a2f40063eb264a21 Mon Sep 17 00:00:00 2001 From: franzih Date: Sat, 25 Feb 2017 04:13:39 -0800 Subject: [PATCH] Add missing variable in gyp file. Node.js doesn't build because v8_extra_library_files is used but not defined in v8.gyp. We can probably clean up the build file and properly delete v8_extra_library_files, just want to get the integration build green again. TBR=adamk@chromium.org BUG= Review-Url: https://codereview.chromium.org/2720483002 Cr-Commit-Position: refs/heads/master@{#43429} --- src/v8.gyp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/v8.gyp b/src/v8.gyp index 7d37ff09752..283e4176203 100644 --- a/src/v8.gyp +++ b/src/v8.gyp @@ -32,6 +32,7 @@ 'v8_vector_stores%': 0, 'embed_script%': "", 'warmup_script%': "", + 'v8_extra_library_files%': [], 'v8_experimental_extra_library_files%': [], 'v8_enable_inspector%': 0, 'mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)',