aboutsummaryrefslogtreecommitdiff
path: root/citadel/citadeld/Android.bp
diff options
context:
space:
mode:
authorAndrew Scull <ascull@google.com>2018-01-13 16:05:32 +0000
committerAndrew Scull <ascull@google.com>2018-01-13 16:06:18 +0000
commit6b7a43403b9ae0abd992c23bd9905d2ddc290184 (patch)
treedbfc8d21680aa14e01332a005388ef0fc60fa6c4 /citadel/citadeld/Android.bp
parent9a759c4b89ce9d9d1acb1d8d751d47dc5db81e27 (diff)
downloadandroid-6b7a43403b9ae0abd992c23bd9905d2ddc290184.tar.gz
Prepare for citadeld running by default.
Sanity checks for citadel are now in citadeld and are run by /vendor/bin/hw/citadel_test. The old manual tests can be run by first killing citadeld: kill $(pgrep citadeld) && test_citadel Change-Id: I09b00617402643d68ae95b0f4ca879cf198ae05f
Diffstat (limited to 'citadel/citadeld/Android.bp')
-rw-r--r--citadel/citadeld/Android.bp14
1 files changed, 11 insertions, 3 deletions
diff --git a/citadel/citadeld/Android.bp b/citadel/citadeld/Android.bp
index 3c6bb4b..2552454 100644
--- a/citadel/citadeld/Android.bp
+++ b/citadel/citadeld/Android.bp
@@ -20,6 +20,9 @@ cc_defaults {
"aidl/android/hardware/citadel/ICitadeld.aidl",
],
defaults: ["nos_base_cc_defaults"],
+ header_libs: [
+ "nos_headers",
+ ],
shared_libs: [
"libbase",
"libbinder",
@@ -49,11 +52,13 @@ cc_binary {
init_rc: ["citadeld.rc"],
srcs: [
"main.cpp",
+ "check.cpp",
],
defaults: ["citadeld_defaults"],
shared_libs: [
"libnos",
"libnos_client_citadel",
+ "libnos_transport",
],
}
@@ -68,7 +73,10 @@ cc_library {
aidl: {
export_aidl_headers: true,
},
- header_libs: [
- "nos_headers",
- ],
+}
+
+cc_binary {
+ name: "citadel_test",
+ srcs: ["citadel_test.cpp"],
+ defaults: ["citadeld_defaults"],
}