5a39cee1ce
Test: pass Bug: 147347110 Change-Id: I142311a7558a19d209bcd63207a88e12cf6f130e
34 lines
840 B
Text
34 lines
840 B
Text
// ========================================================
|
|
// libasync_safe.a
|
|
// ========================================================
|
|
cc_library_static {
|
|
defaults: ["libc_defaults"],
|
|
srcs: [
|
|
"async_safe_log.cpp",
|
|
],
|
|
|
|
name: "libasync_safe",
|
|
vendor_available: true,
|
|
recovery_available: true,
|
|
native_bridge_supported: true,
|
|
|
|
include_dirs: ["bionic/libc"],
|
|
header_libs: ["libc_headers", "liblog_headers"],
|
|
|
|
export_include_dirs: ["include"],
|
|
export_header_lib_headers: ["liblog_headers"],
|
|
stl: "none",
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "libasync_safe_headers",
|
|
ramdisk_available: true,
|
|
recovery_available: true,
|
|
native_bridge_supported: true,
|
|
defaults: ["linux_bionic_supported"],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
system_shared_libs: [],
|
|
stl: "none",
|
|
}
|