diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2016-06-29 21:11:14 +0200 |
---|---|---|
committer | Jeremiah Senkpiel <fishrock123@rocketmail.com> | 2016-07-05 22:36:52 +0200 |
commit | 1bd6a623a057fd43729a14ecf54ff49bea23f023 (patch) | |
tree | f2d8512519105f8c2d2e4ce06449676d8e249727 /node.gyp | |
parent | 6151544751795d9dba9c04daab1aefbfd1f7a965 (diff) | |
download | node-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.gyp | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -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' |