mirror of
https://github.com/nodejs/node.git
synced 2024-11-24 20:29:23 +01:00
dff00ed88d
PR-URL: https://github.com/nodejs/node/pull/47742 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
26 lines
559 B
Python
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)',
|
|
]
|
|
}
|
|
]
|
|
}
|