blob: 683588ed64769e5b815368dae4e39895218e36dc [file] [log] [blame]
Mingming Yin78541282014-05-16 12:10:55 -07001ifeq ($(strip $(AUDIO_FEATURE_ENABLED_EXTN_POST_PROC)),true)
Subhash Chandra Bose Naripeddy3eedc002013-11-12 20:45:15 -08002LOCAL_PATH:= $(call my-dir)
3
4include $(CLEAR_VARS)
5
Mingming Yin78541282014-05-16 12:10:55 -07006ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PROXY_DEVICE)),true)
7 LOCAL_CFLAGS += -DAFE_PROXY_ENABLED
8endif
9
Subhash Chandra Bose Naripeddy3eedc002013-11-12 20:45:15 -080010LOCAL_SRC_FILES:= \
11 bundle.c \
12 equalizer.c \
13 bass_boost.c \
14 virtualizer.c \
15 reverb.c \
16 effect_api.c
17
18LOCAL_CFLAGS+= -O2 -fvisibility=hidden
19
20LOCAL_SHARED_LIBRARIES := \
21 libcutils \
22 liblog \
23 libtinyalsa
24
25LOCAL_MODULE_TAGS := optional
26
27LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/soundfx
28LOCAL_MODULE:= libqcompostprocbundle
29
30LOCAL_C_INCLUDES := \
31 external/tinyalsa/include \
32 kernel/include/sound \
33 $(call include-path-for, audio-effects)
34
35include $(BUILD_SHARED_LIBRARY)
Mingming Yinee733602014-04-03 17:47:22 -070036
37endif