2019-01-07 11:36:35 -08:00
|
|
|
{
|
2023-03-04 20:59:55 +09:00
|
|
|
'variables': {
|
|
|
|
'histogram_sources': [
|
|
|
|
'src/hdr_histogram.c',
|
2023-04-27 11:56:48 +02:00
|
|
|
'include/hdr/hdr_histogram.h',
|
2023-03-04 20:59:55 +09:00
|
|
|
]
|
|
|
|
},
|
2019-01-07 11:36:35 -08:00
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'histogram',
|
|
|
|
'type': 'static_library',
|
2019-05-23 11:22:44 +02:00
|
|
|
'cflags': ['-fvisibility=hidden'],
|
|
|
|
'xcode_settings': {
|
|
|
|
'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
|
|
|
|
},
|
2023-04-27 11:56:48 +02:00
|
|
|
'include_dirs': ['src', 'include'],
|
2019-01-07 11:36:35 -08:00
|
|
|
'direct_dependent_settings': {
|
2023-04-27 11:56:48 +02:00
|
|
|
'include_dirs': [ 'src', 'include' ]
|
2019-01-07 11:36:35 -08:00
|
|
|
},
|
|
|
|
'sources': [
|
2023-03-04 20:59:55 +09:00
|
|
|
'<@(histogram_sources)',
|
2019-01-07 11:36:35 -08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|