1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5cc_library { 6 name: "android.hardware.boot@1.2-impl-pixel-legacy", 7 stem: "android.hardware.boot@1.0-impl-1.2-pixel-legacy", 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 "android.hardware.boot@1.0", 26 "android.hardware.boot@1.1", 27 "android.hardware.boot@1.2", 28 ], 29 static_libs: [ 30 "libboot_control", 31 "libbootloader_message_vendor", 32 "libfstab", 33 ], 34} 35