summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2016-06-29 21:11:14 +0200
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2016-07-05 22:36:52 +0200
commit1bd6a623a057fd43729a14ecf54ff49bea23f023 (patch)
treef2d8512519105f8c2d2e4ce06449676d8e249727 /node.gyp
parent6151544751795d9dba9c04daab1aefbfd1f7a965 (diff)
downloadnode-new-1bd6a623a057fd43729a14ecf54ff49bea23f023.tar.gz
build: drop unconditional openssl dep from cctest
Don't link in openssl when building `./configure --without-inspector`, it's only used by the inspector cctests. Ditto libuv and http_parser. Fixes unnecessarily building openssl when `--shared-openssl` is also passed to configure. Fixes: https://github.com/nodejs/node/issues/7478 PR-URL: https://github.com/nodejs/node/pull/7486 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp7
1 files changed, 1 insertions, 6 deletions
diff --git a/node.gyp b/node.gyp
index 06496b13b0..b2a5a1e4a0 100644
--- a/node.gyp
+++ b/node.gyp
@@ -753,12 +753,7 @@
{
'target_name': 'cctest',
'type': 'executable',
- 'dependencies': [
- 'deps/openssl/openssl.gyp:openssl',
- 'deps/http_parser/http_parser.gyp:http_parser',
- 'deps/gtest/gtest.gyp:gtest',
- 'deps/uv/uv.gyp:libuv',
- ],
+ 'dependencies': [ 'deps/gtest/gtest.gyp:gtest' ],
'include_dirs': [
'src',
'deps/v8/include'