Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2011-09-07 03:13:05 +0400
committerRyan Dahl <ry@tinyclouds.org>2011-09-18 05:22:09 +0400
commit5b8e1dabbc117b38c56f874f4e6d5b7e537cd3c1 (patch)
treebab6eb3c1c276cc4a9a97d45c100ab350e41dc20 /node.gyp
parentdcd911e24b3cd8bdcc850e4c90213fcd6b180251 (diff)
Initial pass at zlib bindings
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp4
1 files changed, 4 insertions, 0 deletions
diff --git a/node.gyp b/node.gyp
index e456c64f2b7..021e9ff648a 100644
--- a/node.gyp
+++ b/node.gyp
@@ -49,6 +49,7 @@
'lib/url.js',
'lib/util.js',
'lib/vm.js',
+ 'lib/zlib.js',
],
},
@@ -61,6 +62,7 @@
'deps/http_parser/http_parser.gyp:http_parser',
'deps/v8/tools/gyp/v8-node.gyp:v8',
'deps/uv/uv.gyp:uv',
+ 'deps/zlib/zlib.gyp:zlib',
'node_js2c#host',
],
@@ -85,6 +87,7 @@
'src/node_os.cc',
'src/node_script.cc',
'src/node_string.cc',
+ 'src/node_zlib.cc',
'src/pipe_wrap.cc',
'src/stdio_wrap.cc',
'src/stream_wrap.cc',
@@ -113,6 +116,7 @@
'src/node_stdio.h',
'src/node_string.h',
'src/node_version.h',
+ 'src/node_zlib.h',
'src/pipe_wrap.h',
'src/platform.h',
'src/req_wrap.h',