blob: 4c7e0c7be850e70f679d84bd02144f51e15b455b [file] [log] [blame]
Bob Badour16747b52021-03-12 04:43:20 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Tianjie Xu1991f0d2019-11-06 15:06:09 -08005cc_library_static {
6 name: "librecovery_ui_pixel",
7 owner: "google",
8 cflags: [
9 "-Wall",
10 "-Wextra",
11 "-Werror",
12 "-pedantic",
13 ],
14 srcs: [
15 "recovery_ui.cpp",
16 ],
17
Tianjie Xu6471bde2019-11-11 11:00:54 -080018 whole_static_libs: [
19 "libmisc_writer",
Tianjie Xu1991f0d2019-11-06 15:06:09 -080020 "libbootloader_message",
21 "libnos_for_recovery",
22 "libnos_citadel_for_recovery",
23 ],
24
25 shared_libs: [
Tianjie Xu6471bde2019-11-11 11:00:54 -080026 "libbase",
Tianjie Xu1991f0d2019-11-06 15:06:09 -080027 "librecovery_ui",
28 ],
29}