summaryrefslogtreecommitdiffstats
path: root/tests/trie/1.0/default/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/trie/1.0/default/Android.bp')
-rw-r--r--tests/trie/1.0/default/Android.bp9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/trie/1.0/default/Android.bp b/tests/trie/1.0/default/Android.bp
index 315c8bb82..948a8cbab 100644
--- a/tests/trie/1.0/default/Android.bp
+++ b/tests/trie/1.0/default/Android.bp
@@ -1,4 +1,4 @@
-cc_library_shared {
+cc_library {
name: "android.hardware.tests.trie@1.0-impl",
defaults: ["hidl_defaults"],
relative_install_path: "hw",
@@ -7,10 +7,15 @@ cc_library_shared {
],
shared_libs: [
"libbase",
+ "libcutils",
"libhidlbase",
"libhidltransport",
+ "libhwbinder",
"liblog",
"libutils",
- "android.hardware.tests.trie@1.0",
],
+
+ // These are static libs only for testing purposes and portability. Shared
+ // libs should be used on device.
+ static_libs: ["android.hardware.tests.trie@1.0"],
}