Josh Gao | 9c02dc5 | 2016-06-15 17:29:00 -0700 | [diff] [blame^] | 1 | cc_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 | } |