blob: cb79ffe91149f48fc22a5212c28df5dd88af77d1 [file] [log] [blame]
Bob Badourd69ad692021-02-16 19:02:14 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Josh Gao27768452018-01-02 12:01:43 -08005cc_library_static {
6 name: "libdiagnose_usb",
7 cflags: ["-Wall", "-Wextra", "-Werror"],
8 host_supported: true,
Jiyong Parka0e75042018-05-24 14:11:00 +09009 recovery_available: true,
Jiyong Park697134d2020-03-23 14:40:50 +000010 apex_available: [
11 "com.android.adbd",
12 // TODO(b/151398197) remove the below
13 "//apex_available:platform",
14 ],
Josh Gao27768452018-01-02 12:01:43 -080015 target: {
16 windows: {
17 enabled: true,
18 },
19 },
20 srcs: ["diagnose_usb.cpp"],
21 export_include_dirs: ["include"],
22 static_libs: ["libbase"],
23}