summaryrefslogtreecommitdiffstats
path: root/minadbd/Android.bp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-09-27 00:46:14 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-09-27 00:46:14 +0200
commitffa9ffbd2bf3226245aa436326a471c4cd6c1cdf (patch)
tree2fa17f82041bb368389eec8b488e7304d5661ebc /minadbd/Android.bp
parentMerge "Use libcrypto_static instead of libcrypto" (diff)
parentminadbd: Export minadbd/types.h to libinstall. (diff)
downloadandroid_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--minadbd/Android.bp11
1 files changed, 9 insertions, 2 deletions
diff --git a/minadbd/Android.bp b/minadbd/Android.bp
index 805d12af3..071712599 100644
--- a/minadbd/Android.bp
+++ b/minadbd/Android.bp
@@ -26,6 +26,10 @@ cc_defaults {
include_dirs: [
"system/core/adb",
],
+
+ header_libs: [
+ "libminadbd_headers",
+ ],
}
// `libminadbd_services` is analogous to the `libadbd_services` for regular `adbd`, but providing
@@ -58,9 +62,12 @@ cc_library {
cc_library_headers {
name: "libminadbd_headers",
recovery_available: true,
- // TODO create a include dir
export_include_dirs: [
- ".",
+ "include",
+ ],
+ // adb_install.cpp
+ visibility: [
+ "//bootable/recovery/install",
],
}