summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2021-04-05 22:01:48 +0000
committerSteven Moreland <smoreland@google.com>2021-04-05 22:29:14 +0000
commit8a2085c52ffd3037397a42c2bfb29161f1607a63 (patch)
treecd9d024289b2c1402fd23ebd49ea5705f65bed0a
parent9e8ee9bd4fa48255553e757b3903baf9af8f056f (diff)
downloadnative-8a2085c52ffd3037397a42c2bfb29161f1607a63.tar.gz
libbinder: add libactivitymanager_aidl
Start splitting out activity manager. This adds an empty library so it can be added in internal branches where the dependency is needed. Bug: 183654927 Test: N/A Change-Id: I1f2334de38b196c28d74f324dde72d55b9648f90
-rw-r--r--libs/binder/Android.bp11
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/binder/Android.bp b/libs/binder/Android.bp
index 2715d6a406..05c32b383f 100644
--- a/libs/binder/Android.bp
+++ b/libs/binder/Android.bp
@@ -296,3 +296,14 @@ cc_library {
"liblog",
],
}
+
+// TODO(b/183654927): initially empty lib to work around some merge conflicts
+cc_library {
+ name: "libactivitymanager_aidl",
+ srcs: [],
+ shared_libs: [
+ "libbinder",
+ "libutils",
+ "liblog",
+ ],
+}