-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAndroid.mk
More file actions
42 lines (26 loc) · 707 Bytes
/
Android.mk
File metadata and controls
42 lines (26 loc) · 707 Bytes
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
38
39
40
41
42
ifeq ($(strip $(BOARD_USES_TINY_AUDIO)),true)
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_C_INCLUDES += external/tinyalsa/include
LOCAL_SRC_FILES := \
TinyHardware.cpp
LOCAL_MODULE := libaudio
LOCAL_STATIC_LIBRARIES += libaudiointerface
LOCAL_SHARED_LIBRARIES := \
libtinyalsa \
libcutils \
libutils \
libmedia \
libc
include $(BUILD_SHARED_LIBRARY)
# Policy manager
include $(CLEAR_VARS)
LOCAL_SRC_FILES := TinyAudioPolicyManager.cpp
LOCAL_MODULE := libaudiopolicy
LOCAL_WHOLE_STATIC_LIBRARIES += libaudiopolicybase
LOCAL_SHARED_LIBRARIES := \
libcutils \
libutils \
libmedia
include $(BUILD_SHARED_LIBRARY)
endif