2016-06-16 00:29:00 +00:00
|
|
|
cc_library_static {
|
|
|
|
name: "libdebuggerd_client",
|
|
|
|
srcs: ["client/debuggerd_client.cpp"],
|
|
|
|
|
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Werror",
|
|
|
|
"-Os",
|
|
|
|
],
|
|
|
|
|
2016-08-09 18:04:05 +00:00
|
|
|
target: {
|
|
|
|
android64: {
|
|
|
|
cflags: ["-DTARGET_IS_64_BIT"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2016-06-16 00:29:00 +00:00
|
|
|
local_include_dirs: ["include"],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
|
|
|
|
// libdebuggerd_client gets async signal safe logging via libc_logging,
|
|
|
|
// which defines its interface in bionic private headers.
|
|
|
|
include_dirs: ["bionic/libc"],
|
|
|
|
static_libs: ["libc_logging"],
|
|
|
|
}
|