summaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2018-08-20 22:40:47 +0200
committerxunchang <xunchang@google.com>2019-03-21 08:45:37 +0100
commitb5108c372c8b92671ea5ebb4eeff00757fcee187 (patch)
tree6e3ec0b1c17e068568c089037b85c09692ad1608 /Android.bp
parentMerge "Move apply_from_sdcard to fuse_sdcard_install" am: 3c61cd02cf am: 3c21700fcd (diff)
downloadandroid_bootable_recovery-b5108c372c8b92671ea5ebb4eeff00757fcee187.tar
android_bootable_recovery-b5108c372c8b92671ea5ebb4eeff00757fcee187.tar.gz
android_bootable_recovery-b5108c372c8b92671ea5ebb4eeff00757fcee187.tar.bz2
android_bootable_recovery-b5108c372c8b92671ea5ebb4eeff00757fcee187.tar.lz
android_bootable_recovery-b5108c372c8b92671ea5ebb4eeff00757fcee187.tar.xz
android_bootable_recovery-b5108c372c8b92671ea5ebb4eeff00757fcee187.tar.zst
android_bootable_recovery-b5108c372c8b92671ea5ebb4eeff00757fcee187.zip
Diffstat (limited to '')
-rw-r--r--Android.bp76
1 files changed, 5 insertions, 71 deletions
diff --git a/Android.bp b/Android.bp
index a6986bb2c..7b67f4077 100644
--- a/Android.bp
+++ b/Android.bp
@@ -26,77 +26,6 @@ cc_defaults {
],
}
-cc_library {
- name: "librecovery_ui",
- recovery_available: true,
-
- defaults: [
- "recovery_defaults",
- ],
-
- srcs: [
- "device.cpp",
- "screen_ui.cpp",
- "ui.cpp",
- "vr_ui.cpp",
- "wear_ui.cpp"
- ],
-
- static_libs: [
- "libminui",
- "libotautil",
- "libfstab",
- ],
-
- shared_libs: [
- "libbase",
- "libpng",
- "libz",
- ],
-}
-
-// Generic device that uses ScreenRecoveryUI.
-cc_library_static {
- name: "librecovery_ui_default",
- recovery_available: true,
-
- defaults: [
- "recovery_defaults",
- ],
-
- srcs: [
- "default_device.cpp",
- ],
-}
-
-// The default wear device that uses WearRecoveryUI.
-cc_library_static {
- name: "librecovery_ui_wear",
- recovery_available: true,
-
- defaults: [
- "recovery_defaults",
- ],
-
- srcs: [
- "wear_device.cpp",
- ],
-}
-
-// The default VR device that uses VrRecoveryUI.
-cc_library_static {
- name: "librecovery_ui_vr",
- recovery_available: true,
-
- defaults: [
- "recovery_defaults",
- ],
-
- srcs: [
- "vr_device.cpp",
- ],
-}
-
cc_library_static {
name: "librecovery_fastboot",
recovery_available: true,
@@ -113,6 +42,7 @@ cc_library_static {
"libbootloader_message",
"libcutils",
"liblog",
+ "librecovery_ui",
],
static_libs: [
@@ -180,6 +110,10 @@ cc_library_static {
"roots.cpp",
],
+ shared_libs: [
+ "librecovery_ui",
+ ],
+
include_dirs: [
"system/vold",
],