summaryrefslogtreecommitdiff
path: root/diagnose_usb/Android.bp
blob: d7d87b502493794cc3dadfcc1430f273a1bb6760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"],
}