diff options
author | Tao Bao <tbao@google.com> | 2019-09-27 00:46:14 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-09-27 00:46:14 +0200 |
commit | ffa9ffbd2bf3226245aa436326a471c4cd6c1cdf (patch) | |
tree | 2fa17f82041bb368389eec8b488e7304d5661ebc /install | |
parent | Merge "Use libcrypto_static instead of libcrypto" (diff) | |
parent | minadbd: Export minadbd/types.h to libinstall. (diff) | |
download | android_bootable_recovery-ffa9ffbd2bf3226245aa436326a471c4cd6c1cdf.tar android_bootable_recovery-ffa9ffbd2bf3226245aa436326a471c4cd6c1cdf.tar.gz android_bootable_recovery-ffa9ffbd2bf3226245aa436326a471c4cd6c1cdf.tar.bz2 android_bootable_recovery-ffa9ffbd2bf3226245aa436326a471c4cd6c1cdf.tar.lz android_bootable_recovery-ffa9ffbd2bf3226245aa436326a471c4cd6c1cdf.tar.xz android_bootable_recovery-ffa9ffbd2bf3226245aa436326a471c4cd6c1cdf.tar.zst android_bootable_recovery-ffa9ffbd2bf3226245aa436326a471c4cd6c1cdf.zip |
Diffstat (limited to '')
-rw-r--r-- | install/Android.bp | 8 | ||||
-rw-r--r-- | install/adb_install.cpp | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/install/Android.bp b/install/Android.bp index 89cc3f23e..78c3a5784 100644 --- a/install/Android.bp +++ b/install/Android.bp @@ -19,10 +19,6 @@ cc_defaults { "recovery_defaults", ], - header_libs: [ - "libminadbd_headers", - ], - shared_libs: [ "libbase", "libbootloader_message", @@ -69,6 +65,10 @@ cc_library_static { "wipe_device.cpp", ], + header_libs: [ + "libminadbd_headers", + ], + shared_libs: [ "librecovery_ui", ], diff --git a/install/adb_install.cpp b/install/adb_install.cpp index ed664429a..ee79a32c0 100644 --- a/install/adb_install.cpp +++ b/install/adb_install.cpp @@ -44,7 +44,7 @@ #include "fuse_sideload.h" #include "install/install.h" #include "install/wipe_data.h" -#include "minadbd_types.h" +#include "minadbd/types.h" #include "otautil/sysutil.h" #include "recovery_ui/device.h" #include "recovery_ui/ui.h" |