Uday Kishore Pasupuleti | 582e0a5 | 2016-01-06 19:12:41 -0800 | [diff] [blame^] | 1 | |
| 2 | LOCAL_PATH:= $(call my-dir) |
| 3 | |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PROXY_DEVICE)),true) |
| 7 | LOCAL_CFLAGS += -DAFE_PROXY_ENABLED |
| 8 | endif |
| 9 | |
| 10 | LOCAL_SRC_FILES:= \ |
| 11 | bundle.c \ |
| 12 | equalizer.c \ |
| 13 | bass_boost.c \ |
| 14 | virtualizer.c \ |
| 15 | reverb.c \ |
| 16 | effect_api.c |
| 17 | |
| 18 | LOCAL_CFLAGS+= -O2 -fvisibility=hidden |
| 19 | |
| 20 | LOCAL_SHARED_LIBRARIES := \ |
| 21 | libcutils \ |
| 22 | liblog \ |
| 23 | libtinyalsa |
| 24 | |
| 25 | LOCAL_MODULE_TAGS := optional |
| 26 | |
| 27 | LOCAL_MODULE_RELATIVE_PATH := soundfx |
| 28 | LOCAL_MODULE:= libqcompostprocbundle |
| 29 | |
| 30 | LOCAL_C_INCLUDES := \ |
| 31 | external/tinyalsa/include \ |
| 32 | $(call include-path-for, audio-effects) |
| 33 | |
| 34 | include $(BUILD_SHARED_LIBRARY) |