summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2018-03-06 22:42:32 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2018-03-15 20:50:34 +0800
commit8484b40b3d38e18c524b7dd560c16ab30c94e427 (patch)
tree1de2db3f46cca74bd7fb2eca5e2a52bd61b2756b /node.gyp
parentd9d0a97541d7a9b478ecc500e5961ad349f42540 (diff)
downloadandroid-node-v8-8484b40b3d38e18c524b7dd560c16ab30c94e427.tar.gz
android-node-v8-8484b40b3d38e18c524b7dd560c16ab30c94e427.tar.bz2
android-node-v8-8484b40b3d38e18c524b7dd560c16ab30c94e427.zip
src: put bootstrappers in lib/internal/bootstrap/
Create `lib/internal/bootstrap/` and put bootstrappers there: Before: ``` lib/internal ├── ... ├── bootstrap_loaders.js └── bootstrap_node.js ``` After: ``` lib/internal ├── ... └── bootstrap ├── loaders.js └── node.js ``` PR-URL: https://github.com/nodejs/node/pull/19177 Refs: https://github.com/nodejs/node/pull/19112 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp4
1 files changed, 2 insertions, 2 deletions
diff --git a/node.gyp b/node.gyp
index 1b047fe9ac..06f0a3b57c 100644
--- a/node.gyp
+++ b/node.gyp
@@ -24,8 +24,8 @@
'node_lib_target_name%': 'node_lib',
'node_intermediate_lib_type%': 'static_library',
'library_files': [
- 'lib/internal/bootstrap_loaders.js',
- 'lib/internal/bootstrap_node.js',
+ 'lib/internal/bootstrap/loaders.js',
+ 'lib/internal/bootstrap/node.js',
'lib/async_hooks.js',
'lib/assert.js',
'lib/buffer.js',