blob: f0131b81a467f2aa538cfb5d125a9d99b6ec8717 [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
Robert Sesek9eb02c92016-08-09 14:04:05 -040012 target: {
13 android64: {
14 cflags: ["-DTARGET_IS_64_BIT"],
15 },
16 },
17
Josh Gao9c02dc52016-06-15 17:29:00 -070018 local_include_dirs: ["include"],
19 export_include_dirs: ["include"],
20
21 // libdebuggerd_client gets async signal safe logging via libc_logging,
22 // which defines its interface in bionic private headers.
23 include_dirs: ["bionic/libc"],
24 static_libs: ["libc_logging"],
25}