summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2019-01-30 22:21:07 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2019-02-02 05:40:47 +0800
commit39d922123c02aecc2e289a08e3bdb9515a7b193a (patch)
tree6ee18ed6096ced4e248836a89c27ecf0da91a6a3 /node.gyp
parent1d996f58af3067617a67c0af8f86f014ed4d139c (diff)
downloadandroid-node-v8-39d922123c02aecc2e289a08e3bdb9515a7b193a.tar.gz
android-node-v8-39d922123c02aecc2e289a08e3bdb9515a7b193a.tar.bz2
android-node-v8-39d922123c02aecc2e289a08e3bdb9515a7b193a.zip
lib: save primordials during bootstrap and use it in builtins
This patches changes the `safe_globals` internal module into a script that gets run during bootstrap and saves JavaScript builtins (primordials) into an object that is available for all other builtin modules to access lexically later. PR-URL: https://github.com/nodejs/node/pull/25816 Refs: https://github.com/nodejs/node/issues/18795 Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gus Caplan <me@gus.host>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.gyp b/node.gyp
index c89f862c42..6b7cbe26f3 100644
--- a/node.gyp
+++ b/node.gyp
@@ -26,6 +26,7 @@
'node_intermediate_lib_type%': 'static_library',
'library_files': [
'lib/internal/per_context.js',
+ 'lib/internal/bootstrap/primordials.js',
'lib/internal/bootstrap/cache.js',
'lib/internal/bootstrap/loaders.js',
'lib/internal/bootstrap/node.js',
@@ -149,7 +150,6 @@
'lib/internal/modules/esm/module_job.js',
'lib/internal/modules/esm/module_map.js',
'lib/internal/modules/esm/translators.js',
- 'lib/internal/safe_globals.js',
'lib/internal/net.js',
'lib/internal/options.js',
'lib/internal/policy/manifest.js',