blob: 27f8af1387a94eaec3eab5a6adf8fe438f3a8064 [file] [log] [blame]
Bob Badour16747b52021-03-12 04:43:20 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
David Anderson9c1020d2019-09-16 13:53:47 -07005cc_library {
Tianjie253b46d2020-11-30 14:38:35 -08006 name: "android.hardware.boot@1.2-impl-pixel-legacy",
7 stem: "android.hardware.boot@1.0-impl-1.2-pixel-legacy",
David Anderson9c1020d2019-09-16 13:53:47 -07008 vendor: true,
9 recovery_available: true,
10 srcs: [
David Andersonb93d6702019-09-16 17:20:03 -070011 "BootControlShared.cpp",
David Anderson9c1020d2019-09-16 13:53:47 -070012 "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 "android.hardware.boot@1.0",
David Andersonb93d6702019-09-16 17:20:03 -070026 "android.hardware.boot@1.1",
Tianjie253b46d2020-11-30 14:38:35 -080027 "android.hardware.boot@1.2",
David Andersonb93d6702019-09-16 17:20:03 -070028 ],
29 static_libs: [
David Anderson953ea5d2019-10-30 13:07:33 -070030 "libboot_control",
David Andersonb93d6702019-09-16 17:20:03 -070031 "libbootloader_message_vendor",
32 "libfstab",
David Anderson9c1020d2019-09-16 13:53:47 -070033 ],
34}