blob: a4dc349d28fae243f5d57fca358dccefdaae8381 [file] [log] [blame]
if with_android_stub
stub_libs = []
foreach lib : ['backtrace', 'cutils', 'hardware', 'log', 'sync']
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