0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-24 20:29:23 +01:00
nodejs/deps/histogram/histogram.gyp
Marco Ippolito dff00ed88d deps: update histogram to 0.11.7
PR-URL: https://github.com/nodejs/node/pull/47742
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
2023-05-25 07:44:56 +00:00

26 lines
559 B
Python

{
'variables': {
'histogram_sources': [
'src/hdr_histogram.c',
'include/hdr/hdr_histogram.h',
]
},
'targets': [
{
'target_name': 'histogram',
'type': 'static_library',
'cflags': ['-fvisibility=hidden'],
'xcode_settings': {
'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
},
'include_dirs': ['src', 'include'],
'direct_dependent_settings': {
'include_dirs': [ 'src', 'include' ]
},
'sources': [
'<@(histogram_sources)',
]
}
]
}