summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2019-04-23 22:21:52 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2019-04-24 00:56:23 +0800
commita41a4ee61b25698394aeda277546605ea25070c1 (patch)
tree0bfaec98a4e781a228c4bec457df3fbc34658d5c /node.gyp
parentd896f03578f2312aaae347de3b5a0b26882effc8 (diff)
downloadandroid-node-v8-a41a4ee61b25698394aeda277546605ea25070c1.tar.gz
android-node-v8-a41a4ee61b25698394aeda277546605ea25070c1.tar.bz2
android-node-v8-a41a4ee61b25698394aeda277546605ea25070c1.zip
build: disable custom v8 snapshot by default
This currently breaks `test/pummel/test-hash-seed.js` PR-URL: https://github.com/nodejs/node/pull/27365 Refs: https://github.com/nodejs/node/pull/27321 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp3
1 files changed, 2 insertions, 1 deletions
diff --git a/node.gyp b/node.gyp
index 82efba25d6..53bd954afb 100644
--- a/node.gyp
+++ b/node.gyp
@@ -6,6 +6,7 @@
'node_use_dtrace%': 'false',
'node_use_etw%': 'false',
'node_no_browser_globals%': 'false',
+ 'node_use_node_snapshot%': 'false',
'node_use_v8_platform%': 'true',
'node_use_bundled_v8%': 'true',
'node_shared%': 'false',
@@ -431,7 +432,7 @@
'src/node_code_cache_stub.cc'
],
}],
- ['want_separate_host_toolset==0', {
+ ['node_use_node_snapshot=="true"', {
'dependencies': [
'node_mksnapshot',
],