diff options
author | Tianjie Xu <xunchang@google.com> | 2019-03-29 22:43:56 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-03-29 22:43:56 +0100 |
commit | 3f25d6bb07589cf44ad02e610a0af2a38672cfb0 (patch) | |
tree | 7bad452d0d5b0ae6eca9adf18c7bf8b8966a318f /Android.bp | |
parent | Merge "Use flags = 0 to avoid fd closing for child updater process" (diff) | |
parent | Merge "Move install to separate module" (diff) | |
download | android_bootable_recovery-3f25d6bb07589cf44ad02e610a0af2a38672cfb0.tar android_bootable_recovery-3f25d6bb07589cf44ad02e610a0af2a38672cfb0.tar.gz android_bootable_recovery-3f25d6bb07589cf44ad02e610a0af2a38672cfb0.tar.bz2 android_bootable_recovery-3f25d6bb07589cf44ad02e610a0af2a38672cfb0.tar.lz android_bootable_recovery-3f25d6bb07589cf44ad02e610a0af2a38672cfb0.tar.xz android_bootable_recovery-3f25d6bb07589cf44ad02e610a0af2a38672cfb0.tar.zst android_bootable_recovery-3f25d6bb07589cf44ad02e610a0af2a38672cfb0.zip |
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 73 |
1 files changed, 3 insertions, 70 deletions
diff --git a/Android.bp b/Android.bp index 7b67f4077..a44a2c625 100644 --- a/Android.bp +++ b/Android.bp @@ -63,32 +63,18 @@ cc_defaults { "libbootloader_message", "libcrypto", "libcutils", - "libext4_utils", "libfs_mgr", - "libfusesideload", - "libhidl-gen-utils", - "libhidlbase", - "libhidltransport", "liblog", - "libpng", - "libselinux", - "libtinyxml2", - "libutils", - "libz", "libziparchive", ], static_libs: [ "librecovery_fastboot", "libminui", - "libpackage", - "libverifier", "libotautil", // external dependencies "libhealthhalutils", - "libvintf_recovery", - "libvintf", "libfstab", ], } @@ -102,69 +88,14 @@ cc_library_static { ], srcs: [ - "adb_install.cpp", "fsck_unshare_blocks.cpp", - "fuse_sdcard_install.cpp", - "install.cpp", "recovery.cpp", - "roots.cpp", ], shared_libs: [ + "libinstall", "librecovery_ui", ], - - include_dirs: [ - "system/vold", - ], -} - -cc_library_static { - name: "libverifier", - recovery_available: true, - - defaults: [ - "recovery_defaults", - ], - - srcs: [ - "asn1_decoder.cpp", - "verifier.cpp", - ], - - shared_libs: [ - "libbase", - "libcrypto", - "libcrypto_utils", - "libziparchive", - ], - - static_libs: [ - "libotautil", - ], -} - -cc_library_static { - name: "libpackage", - recovery_available: true, - - defaults: [ - "recovery_defaults", - ], - - srcs: [ - "package.cpp", - ], - - shared_libs: [ - "libbase", - "libcrypto", - "libziparchive", - ], - - static_libs: [ - "libotautil", - ], } cc_binary { @@ -172,6 +103,7 @@ cc_binary { recovery: true, defaults: [ + "libinstall_defaults", "librecovery_defaults", ], @@ -181,6 +113,7 @@ cc_binary { ], shared_libs: [ + "libinstall", "libminadbd_services", "librecovery_ui", ], |