1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_library {
6    name: "[email protected]",
7    stem: "[email protected]",
8    vendor: true,
9    recovery_available: true,
10    srcs: [
11        "BootControlShared.cpp",
12        "LegacyBootControl.cpp",
13    ],
14    cflags: [
15        "-Wall",
16        "-Werror",
17    ],
18    relative_install_path: "hw",
19    shared_libs: [
20        "libbase",
21        "liblog",
22        "libhardware",
23        "libhidlbase",
24        "libutils",
25        "[email protected]",
26        "[email protected]",
27        "[email protected]",
28    ],
29    static_libs: [
30        "libboot_control",
31        "libbootloader_message_vendor",
32        "libfstab",
33    ],
34}
35