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