Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2962f7c authored by Steven Moreland's avatar Steven Moreland
Browse files

Ran update-makefiles.sh.

Audio common and vibrator hals were not in the build system.

Test: hardware/interfaces mma -j64
Change-Id: I9faa3f4692e8778cab7864c94725198c015352a8
parent 928912f8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
// This is an autogenerated file, do not edit.
subdirs = [
    "audio/common/2.0",
    "benchmarks/msgq/1.0",
    "nfc/1.0",
    "nfc/1.0/default",
@@ -10,6 +11,7 @@ subdirs = [
    "tests/libhwbinder/1.0",
    "tests/msgq/1.0",
    "tests/pointer/1.0",
    "vibrator/1.0",
    "wifi/1.0",
    "wifi/supplicant/1.0",
]

audio/common/2.0/Android.mk

deleted100644 → 0
+0 −39
Original line number Diff line number Diff line
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE := android.hardware.audio.common@2.0
LOCAL_MODULE_CLASS := SHARED_LIBRARIES

intermediates := $(local-generated-sources-dir)

HIDL := $(HOST_OUT_EXECUTABLES)/hidl-gen$(HOST_EXECUTABLE_SUFFIX)

#
# Build types.hal
#
GEN := $(intermediates)/android/hardware/audio/common/2.0/types.cpp
$(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) \
        -Lc++ -randroid.hardware:hardware/interfaces \
        android.hardware.audio.common@2.0::types

$(GEN): $(LOCAL_PATH)/types.hal
	$(transform-generated-source)
LOCAL_GENERATED_SOURCES += $(GEN)

LOCAL_EXPORT_C_INCLUDE_DIRS := $(intermediates)
LOCAL_SHARED_LIBRARIES := \
    libhidl \
    libhwbinder \
    libutils \
    libcutils \

LOCAL_MULTILIB := both
include $(BUILD_SHARED_LIBRARY)


include $(call all-makefiles-under,$(LOCAL_PATH))