We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6537512 commit d5051d0Copy full SHA for d5051d0
node.gni
@@ -10,6 +10,8 @@ declare_args() {
10
# The location of V8, use the one from node's deps by default.
11
node_v8_path = "$node_path/deps/v8"
12
13
+ node_openssl_path = "$node_path/deps/openssl"
14
+
15
# The NODE_MODULE_VERSION defined in node_version.h.
16
node_module_version = exec_script("$node_path/tools/getmoduleversion.py", [], "value")
17
unofficial.gni
@@ -182,7 +182,7 @@ template("node_gn_build") {
182
deps += [ "//third_party/icu" ]
183
}
184
if (node_use_openssl) {
185
- public_deps += [ "deps/openssl" ]
+ public_deps += [ "$node_openssl_path" ]
186
sources += gypi_values.node_crypto_sources
187
188
if (node_enable_inspector) {
0 commit comments