blob: 6097ae8ef07a7d63ee690e8f8a50483a4e9572e8 [file] [log] [blame]
if with_android_stub
stub_libs = []
lib_names = ['cutils', 'hardware', 'log', 'nativewindow', 'sync']
if with_libbacktrace
lib_names += ['backtrace']
endif
foreach lib : lib_names
stub_libs += shared_library(
lib,
files(lib + '_stub.cpp'),
include_directories : inc_include,
install : false,
)
endforeach
dep_android = declare_dependency(
link_with : stub_libs,
)
endif