| 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 |  | 
| Robert Sesek | 9eb02c9 | 2016-08-09 14:04:05 -0400 | [diff] [blame] | 12 | target: { | 
|  | 13 | android64: { | 
|  | 14 | cflags: ["-DTARGET_IS_64_BIT"], | 
|  | 15 | }, | 
|  | 16 | }, | 
|  | 17 |  | 
| Josh Gao | 9c02dc5 | 2016-06-15 17:29:00 -0700 | [diff] [blame] | 18 | 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 | } |