36 lines
664 B
Makefile
36 lines
664 B
Makefile
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PROXY_DEVICE)),true)
|
|
LOCAL_CFLAGS += -DAFE_PROXY_ENABLED
|
|
endif
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
bundle.c \
|
|
equalizer.c \
|
|
bass_boost.c \
|
|
virtualizer.c \
|
|
reverb.c \
|
|
effect_api.c
|
|
|
|
LOCAL_CFLAGS+= -O2 -fvisibility=hidden
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
liblog \
|
|
libtinyalsa
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_MODULE_RELATIVE_PATH := soundfx
|
|
LOCAL_MODULE:= libqcompostprocbundle
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
external/tinyalsa/include \
|
|
$(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include \
|
|
$(call include-path-for, audio-effects)
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|