diff options
author | Steven Moreland <smoreland@google.com> | 2017-08-10 15:15:06 -0700 |
---|---|---|
committer | Steven Moreland <smoreland@google.com> | 2017-08-10 22:40:04 +0000 |
commit | 8ac1971678999c46338d751fdaec16c2e4bd78cb (patch) | |
tree | 3d8c9b952bb3cf19d36ee10cce983a778127f3c1 /bluetooth | |
parent | 986d5a9707f2ce7fa857246f8fee7b90f96f3d8c (diff) | |
download | platform_hardware_interfaces-8ac1971678999c46338d751fdaec16c2e4bd78cb.tar.gz platform_hardware_interfaces-8ac1971678999c46338d751fdaec16c2e4bd78cb.tar.bz2 platform_hardware_interfaces-8ac1971678999c46338d751fdaec16c2e4bd78cb.zip |
Updating all makefiles.
Bug: 64487114
Test: none
Merged-In: I8608c8f636c35f21e4246a805a9eff6d14124e0a
Change-Id: I2fa89b6661c39859ec4fb62c4bb0a05a35e645f0
Diffstat (limited to 'bluetooth')
-rw-r--r-- | bluetooth/1.0/Android.mk | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/bluetooth/1.0/Android.mk b/bluetooth/1.0/Android.mk index 5dade87f51..5937e0f3a2 100644 --- a/bluetooth/1.0/Android.mk +++ b/bluetooth/1.0/Android.mk @@ -83,86 +83,5 @@ LOCAL_GENERATED_SOURCES += $(GEN) include $(BUILD_JAVA_LIBRARY) -################################################################################ - -include $(CLEAR_VARS) -LOCAL_MODULE := android.hardware.bluetooth-V1.0-java-static -LOCAL_MODULE_CLASS := JAVA_LIBRARIES - -intermediates := $(call local-generated-sources-dir, COMMON) - -HIDL := $(HOST_OUT_EXECUTABLES)/hidl-gen$(HOST_EXECUTABLE_SUFFIX) - -LOCAL_STATIC_JAVA_LIBRARIES := \ - android.hidl.base-V1.0-java-static \ - -LOCAL_NO_STANDARD_LIBRARIES := true -LOCAL_JAVA_LIBRARIES := core-oj hwbinder - -# -# Build types.hal (Status) -# -GEN := $(intermediates)/android/hardware/bluetooth/V1_0/Status.java -$(GEN): $(HIDL) -$(GEN): PRIVATE_HIDL := $(HIDL) -$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal -$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) -$(GEN): PRIVATE_CUSTOM_TOOL = \ - $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ - -Ljava \ - -randroid.hardware:hardware/interfaces \ - -randroid.hidl:system/libhidl/transport \ - android.hardware.bluetooth@1.0::types.Status - -$(GEN): $(LOCAL_PATH)/types.hal - $(transform-generated-source) -LOCAL_GENERATED_SOURCES += $(GEN) - -# -# Build IBluetoothHci.hal -# -GEN := $(intermediates)/android/hardware/bluetooth/V1_0/IBluetoothHci.java -$(GEN): $(HIDL) -$(GEN): PRIVATE_HIDL := $(HIDL) -$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/IBluetoothHci.hal -$(GEN): PRIVATE_DEPS += $(LOCAL_PATH)/IBluetoothHciCallbacks.hal -$(GEN): $(LOCAL_PATH)/IBluetoothHciCallbacks.hal -$(GEN): PRIVATE_DEPS += $(LOCAL_PATH)/types.hal -$(GEN): $(LOCAL_PATH)/types.hal -$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) -$(GEN): PRIVATE_CUSTOM_TOOL = \ - $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ - -Ljava \ - -randroid.hardware:hardware/interfaces \ - -randroid.hidl:system/libhidl/transport \ - android.hardware.bluetooth@1.0::IBluetoothHci - -$(GEN): $(LOCAL_PATH)/IBluetoothHci.hal - $(transform-generated-source) -LOCAL_GENERATED_SOURCES += $(GEN) - -# -# Build IBluetoothHciCallbacks.hal -# -GEN := $(intermediates)/android/hardware/bluetooth/V1_0/IBluetoothHciCallbacks.java -$(GEN): $(HIDL) -$(GEN): PRIVATE_HIDL := $(HIDL) -$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/IBluetoothHciCallbacks.hal -$(GEN): PRIVATE_DEPS += $(LOCAL_PATH)/types.hal -$(GEN): $(LOCAL_PATH)/types.hal -$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) -$(GEN): PRIVATE_CUSTOM_TOOL = \ - $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ - -Ljava \ - -randroid.hardware:hardware/interfaces \ - -randroid.hidl:system/libhidl/transport \ - android.hardware.bluetooth@1.0::IBluetoothHciCallbacks - -$(GEN): $(LOCAL_PATH)/IBluetoothHciCallbacks.hal - $(transform-generated-source) -LOCAL_GENERATED_SOURCES += $(GEN) -include $(BUILD_STATIC_JAVA_LIBRARY) - - include $(call all-makefiles-under,$(LOCAL_PATH)) |