summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2020-04-02 09:11:20 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2020-04-02 09:11:20 +0200
commitb27093b45cccc8c0e399dad2058e245f7c9ee6ba (patch)
tree7bc6309c1a82848031f33529c5fc91126f5caa52
parentSnap for 6344429 from 0b70ed13b626d8f147c60a82eb14e05e13e4063e to mainline-release (diff)
parentminadbd: statically link libadbd. am: 22beef1b28 am: 9267225df0 am: 2526ae8aeb (diff)
downloadandroid_bootable_recovery-b27093b45cccc8c0e399dad2058e245f7c9ee6ba.tar
android_bootable_recovery-b27093b45cccc8c0e399dad2058e245f7c9ee6ba.tar.gz
android_bootable_recovery-b27093b45cccc8c0e399dad2058e245f7c9ee6ba.tar.bz2
android_bootable_recovery-b27093b45cccc8c0e399dad2058e245f7c9ee6ba.tar.lz
android_bootable_recovery-b27093b45cccc8c0e399dad2058e245f7c9ee6ba.tar.xz
android_bootable_recovery-b27093b45cccc8c0e399dad2058e245f7c9ee6ba.tar.zst
android_bootable_recovery-b27093b45cccc8c0e399dad2058e245f7c9ee6ba.zip
-rw-r--r--minadbd/Android.bp12
-rw-r--r--minadbd/minadbd_services.cpp4
2 files changed, 13 insertions, 3 deletions
diff --git a/minadbd/Android.bp b/minadbd/Android.bp
index c39c73443..793680f33 100644
--- a/minadbd/Android.bp
+++ b/minadbd/Android.bp
@@ -34,7 +34,7 @@ cc_defaults {
// `libminadbd_services` is analogous to the `libadbd_services` for regular `adbd`, but providing
// the sideload service only.
-cc_library {
+cc_library_static {
name: "libminadbd_services",
recovery_available: true,
@@ -79,6 +79,8 @@ cc_binary {
defaults: [
"minadbd_defaults",
+ "libadbd_binary_dependencies",
+ "librecovery_utils_defaults",
],
srcs: [
@@ -86,10 +88,14 @@ cc_binary {
],
shared_libs: [
- "libadbd",
"libbase",
"libcrypto",
+ ],
+
+ static_libs: [
"libminadbd_services",
+ "libfusesideload",
+ "librecovery_utils",
],
required: [
@@ -104,6 +110,7 @@ cc_test {
defaults: [
"minadbd_defaults",
"librecovery_utils_defaults",
+ "libadbd_binary_dependencies",
],
srcs: [
@@ -116,7 +123,6 @@ cc_test {
"libfusesideload",
"librecovery_utils",
"libotautil",
- "libadbd",
],
shared_libs: [
diff --git a/minadbd/minadbd_services.cpp b/minadbd/minadbd_services.cpp
index eb91fb3e4..ff91ba931 100644
--- a/minadbd/minadbd_services.cpp
+++ b/minadbd/minadbd_services.cpp
@@ -266,6 +266,10 @@ static void WipeDeviceService(unique_fd fd, const std::string& args) {
}
}
+asocket* daemon_service_to_socket(std::string_view) {
+ return nullptr;
+}
+
unique_fd daemon_service_to_fd(std::string_view name, atransport* /* transport */) {
// Common services that are supported both in sideload and rescue modes.
if (android::base::ConsumePrefix(&name, "reboot:")) {