mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
6bf7b6e342
Update deps/ncrypto/ncrypto.cc PR-URL: https://github.com/nodejs/node/pull/54459 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
29 lines
553 B
Python
29 lines
553 B
Python
{
|
|
'variables': {
|
|
'ncrypto_sources': [
|
|
'engine.cc',
|
|
'dh-primes.h',
|
|
'ncrypto.cc',
|
|
'ncrypto.h',
|
|
],
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'ncrypto',
|
|
'type': 'static_library',
|
|
'include_dirs': ['.'],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': ['.'],
|
|
},
|
|
'sources': [ '<@(ncrypto_sources)' ],
|
|
'conditions': [
|
|
['node_shared_openssl=="false"', {
|
|
'dependencies': [
|
|
'../openssl/openssl.gyp:openssl'
|
|
]
|
|
}],
|
|
]
|
|
},
|
|
]
|
|
}
|