summaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-03-22 16:05:00 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-03-22 16:05:00 +0100
commit6287253eb4e00d6a6a1116be2f447be9c545ce97 (patch)
tree53c458f85d7ec6ea5243002786d340c8b57dbad6 /Android.bp
parentMerge "Move apply_from_sdcard to fuse_sdcard_install" (diff)
parentMove librecovery_ui to a sub-directory (diff)
downloadandroid_bootable_recovery-6287253eb4e00d6a6a1116be2f447be9c545ce97.tar
android_bootable_recovery-6287253eb4e00d6a6a1116be2f447be9c545ce97.tar.gz
android_bootable_recovery-6287253eb4e00d6a6a1116be2f447be9c545ce97.tar.bz2
android_bootable_recovery-6287253eb4e00d6a6a1116be2f447be9c545ce97.tar.lz
android_bootable_recovery-6287253eb4e00d6a6a1116be2f447be9c545ce97.tar.xz
android_bootable_recovery-6287253eb4e00d6a6a1116be2f447be9c545ce97.tar.zst
android_bootable_recovery-6287253eb4e00d6a6a1116be2f447be9c545ce97.zip
Diffstat (limited to 'Android.bp')
-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",
],