summaryrefslogtreecommitdiffstats
path: root/boot
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2016-11-16 14:17:58 -0800
committerYifan Hong <elsk@google.com>2016-11-18 09:52:57 -0800
commit63544eacb69e9e42a28831d2ef9ade93aaa6a3c0 (patch)
tree5bc5f165c9b0719b9eba2898c783b2ffcf1d5b49 /boot
parent6033952ff10e166d3100e0464d7351f312453eb2 (diff)
downloadplatform_hardware_interfaces-63544eacb69e9e42a28831d2ef9ade93aaa6a3c0.tar.gz
platform_hardware_interfaces-63544eacb69e9e42a28831d2ef9ade93aaa6a3c0.tar.bz2
platform_hardware_interfaces-63544eacb69e9e42a28831d2ef9ade93aaa6a3c0.zip
Split libhidl into base and transport.
Bug: 32756130 Test: mma Change-Id: Id21cf23abe2910f26bb7895511862443b93dc112
Diffstat (limited to 'boot')
-rw-r--r--boot/1.0/Android.bp6
-rw-r--r--boot/1.0/default/Android.mk6
2 files changed, 8 insertions, 4 deletions
diff --git a/boot/1.0/Android.bp b/boot/1.0/Android.bp
index cad749771a..835d35842e 100644
--- a/boot/1.0/Android.bp
+++ b/boot/1.0/Android.bp
@@ -38,13 +38,15 @@ cc_library_shared {
generated_headers: ["android.hardware.boot@1.0_genc++_headers"],
export_generated_headers: ["android.hardware.boot@1.0_genc++_headers"],
shared_libs: [
- "libhidl",
+ "libhidlbase",
+ "libhidltransport",
"libhwbinder",
"libutils",
"libcutils",
],
export_shared_lib_headers: [
- "libhidl",
+ "libhidlbase",
+ "libhidltransport",
"libhwbinder",
"libutils",
],
diff --git a/boot/1.0/default/Android.mk b/boot/1.0/default/Android.mk
index 50fd1e4ac3..be67779580 100644
--- a/boot/1.0/default/Android.mk
+++ b/boot/1.0/default/Android.mk
@@ -8,7 +8,8 @@ LOCAL_SRC_FILES := \
LOCAL_SHARED_LIBRARIES := \
liblog \
- libhidl \
+ libhidlbase \
+ libhidltransport \
libhwbinder \
libhardware \
libutils \
@@ -27,7 +28,8 @@ LOCAL_SHARED_LIBRARIES := \
liblog \
libhwbinder \
libhardware \
- libhidl \
+ libhidlbase \
+ libhidltransport \
libutils \
android.hardware.boot@1.0 \