b1ac9b4275
Many modules requiring min_sdk_version have been used without setting it, but hard-coded as "30" in allowlist. Bug: 158059172 Test: m Change-Id: I0b461c28077584f2db2d2f688423f2227c0a2d1a
24 lines
577 B
Text
24 lines
577 B
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libdiagnose_usb",
|
|
cflags: ["-Wall", "-Wextra", "-Werror"],
|
|
host_supported: true,
|
|
recovery_available: true,
|
|
min_sdk_version: "apex_inherit",
|
|
apex_available: [
|
|
"com.android.adbd",
|
|
// TODO(b/151398197) remove the below
|
|
"//apex_available:platform",
|
|
],
|
|
target: {
|
|
windows: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
srcs: ["diagnose_usb.cpp"],
|
|
export_include_dirs: ["include"],
|
|
static_libs: ["libbase"],
|
|
}
|