blob: be931a8ee87fdaf5c0a495e21cc45ae237d56851 [file] [log] [blame]
if with_android_stub
stub_libs = []
# backtrace not available in recent NDK
foreach lib : ['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