mirror of
https://github.com/Anything-at-25-00/android_device_tecno_LG8n.git
synced 2024-11-23 06:06:27 -08:00
13856a412b
Support to communicate with other service with AIDL interface. Bug: 215463744 Test: build pass Change-Id: I236f4098170fa02daff69873e5b8896b8fa621f3 Signed-off-by: Jasmine Cha <chajasmine@google.com> Signed-off-by: Shirayuki39 <lorddemecrius83@proton.me>
38 lines
854 B
Makefile
38 lines
854 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android.hardware.audio.service.mediatek.rc
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_CLASS := ETC
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_ETC)/init
|
|
LOCAL_SRC_FILES := $(LOCAL_MODULE)
|
|
include $(BUILD_PREBUILT)
|
|
|
|
LOCAL_PATH := hardware/interfaces/audio/common/all-versions/default/service
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android.hardware.audio.service.mediatek
|
|
LOCAL_REQUIRED_MODULES := android.hardware.audio.service.mediatek.rc
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_VENDOR_MODULE := true
|
|
LOCAL_MULTILIB := 64
|
|
|
|
LOCAL_SRC_FILES := \
|
|
service.cpp
|
|
|
|
LOCAL_CFLAGS := \
|
|
-Wall \
|
|
-Wextra \
|
|
-Werror
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libbinder \
|
|
libbinder_ndk \
|
|
libhidlbase \
|
|
liblog \
|
|
libutils \
|
|
libhardware
|
|
|
|
include $(BUILD_EXECUTABLE)
|