blob: d7d87b502493794cc3dadfcc1430f273a1bb6760 [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,
Jooyung Hanb1ac9b42021-11-23 11:11:36 +090010 min_sdk_version: "apex_inherit",
Jiyong Park697134d2020-03-23 14:40:50 +000011 apex_available: [
12 "com.android.adbd",
13 // TODO(b/151398197) remove the below
14 "//apex_available:platform",
15 ],
Josh Gao27768452018-01-02 12:01:43 -080016 target: {
17 windows: {
18 enabled: true,
19 },
20 },
21 srcs: ["diagnose_usb.cpp"],
22 export_include_dirs: ["include"],
23 static_libs: ["libbase"],
24}