summaryrefslogtreecommitdiff
path: root/bootctrl/Android.bp
blob: 27f8af1387a94eaec3eab5a6adf8fe438f3a8064 (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
25
26
27
28
29
30
31
32
33
34
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

cc_library {
    name: "android.hardware.boot@1.2-impl-pixel-legacy",
    stem: "android.hardware.boot@1.0-impl-1.2-pixel-legacy",
    vendor: true,
    recovery_available: true,
    srcs: [
        "BootControlShared.cpp",
        "LegacyBootControl.cpp",
    ],
    cflags: [
        "-Wall",
        "-Werror",
    ],
    relative_install_path: "hw",
    shared_libs: [
        "libbase",
        "liblog",
        "libhardware",
        "libhidlbase",
        "libutils",
        "android.hardware.boot@1.0",
        "android.hardware.boot@1.1",
        "android.hardware.boot@1.2",
    ],
    static_libs: [
        "libboot_control",
        "libbootloader_message_vendor",
        "libfstab",
    ],
}