1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
system_wrappers_sources = [
'source/cpu_features.cc',
'source/field_trial.cc',
'source/metrics.cc',
'source/sleep.cc',
]
system_headers = [
'include/cpu_features_wrapper.h',
'include/metrics.h',
'include/sleep.h',
]
install_headers(system_headers,
subdir: join_paths(include_subdir, 'system_wrappers', 'include')
)
libsystem_wrappers = static_library('system_wrappers',
system_wrappers_sources,
dependencies: common_deps,
include_directories: webrtc_inc,
c_args : common_cflags,
cpp_args : common_cxxflags
)
system_wrappers_dep = declare_dependency(
link_with: libsystem_wrappers
)
|