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:
authorJames M Snell <jasnell@gmail.com>2020-09-18 20:14:58 +0300
committerJames M Snell <jasnell@gmail.com>2020-10-08 03:27:01 +0300
commitba77dc8597cbcf42feea59f1381512d421ec9cc5 (patch)
treed56513204d182159561b8d1cf55168b63a72a093 /node.gyp
parentd0438a629a34a19c7368a32f5731f7b8c3cd3ec8 (diff)
crypto: move node_crypto files to src/crypto
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/35093 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp16
1 files changed, 8 insertions, 8 deletions
diff --git a/node.gyp b/node.gyp
index 5a0b1ea112c..59a92e02e00 100644
--- a/node.gyp
+++ b/node.gyp
@@ -902,16 +902,16 @@
} ],
[ 'node_use_openssl=="true"', {
'sources': [
+ 'src/crypto/crypto_common.cc',
+ 'src/crypto/crypto_bio.cc',
+ 'src/crypto/crypto_clienthello.cc',
+ 'src/crypto/crypto_common.h',
+ 'src/crypto/crypto_bio.h',
+ 'src/crypto/crypto_clienthello.h',
+ 'src/crypto/crypto_clienthello-inl.h',
+ 'src/crypto/crypto_groups.h',
'src/node_crypto.cc',
- 'src/node_crypto_common.cc',
- 'src/node_crypto_bio.cc',
- 'src/node_crypto_clienthello.cc',
'src/node_crypto.h',
- 'src/node_crypto_common.h',
- 'src/node_crypto_bio.h',
- 'src/node_crypto_clienthello.h',
- 'src/node_crypto_clienthello-inl.h',
- 'src/node_crypto_groups.h',
'src/tls_wrap.cc',
'src/tls_wrap.h'
],