-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAndroid.mk
37 lines (30 loc) · 889 Bytes
/
Android.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 := 32
LOCAL_SRC_FILES := \
service.cpp
LOCAL_CFLAGS := \
-Wall \
-Wextra \
-Werror
LOCAL_SHARED_LIBRARIES := \
libcutils \
libbinder \
libbinder_ndk \
libhidlbase \
liblog \
libutils \
libhardware
include $(BUILD_EXECUTABLE)