You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
524 B
30 lines
524 B
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "librecovery_ui_pixel",
|
|
owner: "google",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Werror",
|
|
"-pedantic",
|
|
],
|
|
srcs: [
|
|
"recovery_ui.cpp",
|
|
],
|
|
|
|
whole_static_libs: [
|
|
"libmisc_writer",
|
|
"libbootloader_message",
|
|
"libnos_for_recovery",
|
|
"libnos_citadel_for_recovery",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"librecovery_ui",
|
|
],
|
|
}
|