From 7b7ee191dc9ff4302b65c88bc040687dc07bdd2a Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Wed, 23 Oct 2019 13:27:17 -0700 Subject: [PATCH] Use adbd_system_binaries to track adbd's dependencies. required doesn't propagate from apexes, so we need a separate phony target to track adbd's dependenecies. Test: m Change-Id: I4c97047dbd1c2f9b394d864aed229798f09fc9b1 --- adb/Android.bp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/adb/Android.bp b/adb/Android.bp index 170053bef..bf71919cf 100644 --- a/adb/Android.bp +++ b/adb/Android.bp @@ -513,6 +513,19 @@ cc_binary { ], } +phony { + name: "adbd_system_binaries", + required: [ + "abb", + ] +} + +phony { + name: "adbd_system_binaries_recovery", + required: [ + ], +} + cc_binary { name: "static_adbd", defaults: ["adbd_defaults", "host_adbd_supported"],