summaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
authorHridya Valsaraju <hridya@google.com>2018-07-28 07:09:12 +0200
committerHridya Valsaraju <hridya@google.com>2018-08-14 06:18:18 +0200
commit20c81b308d834f84f3decf795575dc7a0baeb69d (patch)
tree259f985023b38c976208d7fa8e95a59fdf9b615d /Android.bp
parentMerge "Reland "Build and use minadbd as a shared library."" (diff)
downloadandroid_bootable_recovery-20c81b308d834f84f3decf795575dc7a0baeb69d.tar
android_bootable_recovery-20c81b308d834f84f3decf795575dc7a0baeb69d.tar.gz
android_bootable_recovery-20c81b308d834f84f3decf795575dc7a0baeb69d.tar.bz2
android_bootable_recovery-20c81b308d834f84f3decf795575dc7a0baeb69d.tar.lz
android_bootable_recovery-20c81b308d834f84f3decf795575dc7a0baeb69d.tar.xz
android_bootable_recovery-20c81b308d834f84f3decf795575dc7a0baeb69d.tar.zst
android_bootable_recovery-20c81b308d834f84f3decf795575dc7a0baeb69d.zip
Diffstat (limited to '')
-rw-r--r--Android.bp24
1 files changed, 24 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 630c7965e..5677b6c2a 100644
--- a/Android.bp
+++ b/Android.bp
@@ -96,6 +96,29 @@ cc_library_static {
],
}
+cc_library_static {
+ name: "librecovery_fastboot",
+ recovery_available: true,
+ defaults: [
+ "recovery_defaults",
+ ],
+
+ srcs: [
+ "fastboot/fastboot.cpp",
+ ],
+
+ shared_libs: [
+ "libbase",
+ "libbootloader_message",
+ "libcutils",
+ "liblog",
+ ],
+
+ static_libs: [
+ "librecovery_ui_default",
+ ],
+}
+
cc_defaults {
name: "librecovery_defaults",
@@ -124,6 +147,7 @@ cc_defaults {
],
static_libs: [
+ "librecovery_fastboot",
"libminui",
"libverifier",
"libotautil",