blob: 8a63f3f1233a34f8e654ff1f77b60e55489d258c [file] [log] [blame]
Josh Gao9c02dc52016-06-15 17:29:00 -07001cc_library_static {
2 name: "libdebuggerd_client",
3 srcs: ["client/debuggerd_client.cpp"],
4
5 cflags: [
6 "-Wall",
7 "-Wextra",
8 "-Werror",
9 "-Os",
10 ],
11
12 local_include_dirs: ["include"],
13 export_include_dirs: ["include"],
14
15 // libdebuggerd_client gets async signal safe logging via libc_logging,
16 // which defines its interface in bionic private headers.
17 include_dirs: ["bionic/libc"],
18 static_libs: ["libc_logging"],
19}