summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorEvan Lucas <evanlucas@me.com>2015-05-22 09:52:05 -0500
committerEvan Lucas <evanlucas@me.com>2015-05-28 09:38:29 -0500
commita77c330c32fc1c2ffd5069e3ca57e4d3478b2e5e (patch)
tree281402c01ca42b13a8f3b615658077fd9a4661da /node.gyp
parentfbd2b597163a687c5485186161891ac54bef441a (diff)
downloadandroid-node-v8-a77c330c32fc1c2ffd5069e3ca57e4d3478b2e5e.tar.gz
android-node-v8-a77c330c32fc1c2ffd5069e3ca57e4d3478b2e5e.tar.bz2
android-node-v8-a77c330c32fc1c2ffd5069e3ca57e4d3478b2e5e.zip
child_process: expose ChildProcess constructor
Creates two new internal modules (child_process and socket_list) for better readability. Exposes the ChildProcess constructor from the child_process module so one can now `require(‘child_process’).ChildProcess` Fixes: https://github.com/nodejs/io.js/issues/1751 PR-URL: https://github.com/nodejs/io.js/pull/1760 Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp2
1 files changed, 2 insertions, 0 deletions
diff --git a/node.gyp b/node.gyp
index 70c9841a89..ad7e271531 100644
--- a/node.gyp
+++ b/node.gyp
@@ -70,8 +70,10 @@
'lib/vm.js',
'lib/zlib.js',
+ 'lib/internal/child_process.js',
'lib/internal/freelist.js',
'lib/internal/smalloc.js',
+ 'lib/internal/socket_list.js',
'lib/internal/repl.js',
],
},