summaryrefslogtreecommitdiffstats
path: root/bluetooth
diff options
context:
space:
mode:
Diffstat (limited to 'bluetooth')
-rw-r--r--bluetooth/1.0/Android.bp75
1 files changed, 75 insertions, 0 deletions
diff --git a/bluetooth/1.0/Android.bp b/bluetooth/1.0/Android.bp
index c883c597e..222f3e67e 100644
--- a/bluetooth/1.0/Android.bp
+++ b/bluetooth/1.0/Android.bp
@@ -71,3 +71,78 @@ cc_library {
"libutils",
],
}
+
+genrule {
+ name: "android.hardware.bluetooth@1.0-adapter-helper_genc++",
+ tools: ["hidl-gen"],
+ cmd: "$(location hidl-gen) -o $(genDir) -Lc++-adapter-sources -randroid.hardware:hardware/interfaces -randroid.hidl:system/libhidl/transport android.hardware.bluetooth@1.0",
+ srcs: [
+ ":android.hardware.bluetooth@1.0_hal",
+ ],
+ out: [
+ "android/hardware/bluetooth/1.0/ABluetoothHci.cpp",
+ "android/hardware/bluetooth/1.0/ABluetoothHciCallbacks.cpp",
+ ],
+}
+
+genrule {
+ name: "android.hardware.bluetooth@1.0-adapter-helper_genc++_headers",
+ tools: ["hidl-gen"],
+ cmd: "$(location hidl-gen) -o $(genDir) -Lc++-adapter-headers -randroid.hardware:hardware/interfaces -randroid.hidl:system/libhidl/transport android.hardware.bluetooth@1.0",
+ srcs: [
+ ":android.hardware.bluetooth@1.0_hal",
+ ],
+ out: [
+ "android/hardware/bluetooth/1.0/ABluetoothHci.h",
+ "android/hardware/bluetooth/1.0/ABluetoothHciCallbacks.h",
+ ],
+}
+
+
+cc_library {
+ name: "android.hardware.bluetooth@1.0-adapter-helper",
+ defaults: ["hidl-module-defaults"],
+ generated_sources: ["android.hardware.bluetooth@1.0-adapter-helper_genc++"],
+ generated_headers: ["android.hardware.bluetooth@1.0-adapter-helper_genc++_headers"],
+ export_generated_headers: ["android.hardware.bluetooth@1.0-adapter-helper_genc++_headers"],
+ vendor_available: true,
+ shared_libs: [
+ "libhidlbase",
+ "libhidltransport",
+ "libhwbinder",
+ "liblog",
+ "libutils",
+ "libcutils",
+ "libhidladapter",
+ "android.hardware.bluetooth@1.0",
+ "android.hidl.base@1.0-adapter-helper",
+ ],
+ export_shared_lib_headers: [
+ "libhidlbase",
+ "libhidltransport",
+ "libhwbinder",
+ "libutils",
+ "libhidladapter",
+ "android.hardware.bluetooth@1.0",
+ "android.hidl.base@1.0-adapter-helper",
+ ],
+}
+
+genrule {
+ name: "android.hardware.bluetooth@1.0-adapter_genc++",
+ tools: ["hidl-gen"],
+ cmd: "$(location hidl-gen) -o $(genDir) -Lc++-adapter-main -randroid.hardware:hardware/interfaces -randroid.hidl:system/libhidl/transport android.hardware.bluetooth@1.0",
+ out: ["main.cpp"]}
+
+cc_test {
+ name: "android.hardware.bluetooth@1.0-adapter",
+ shared_libs: [
+ "libhidladapter",
+ "libhidlbase",
+ "libhidltransport",
+ "libutils",
+ "android.hardware.bluetooth@1.0",
+ "android.hardware.bluetooth@1.0-adapter-helper",
+ ],
+ generated_sources: ["android.hardware.bluetooth@1.0-adapter_genc++"],
+}