1 LOCAL_PATH:= $(call my-dir) 2 3 # Multichannel downmix effect library 4 include $(CLEAR_VARS) 5 6 LOCAL_SRC_FILES:= \ 7 EffectDownmix.c 8 9 LOCAL_SHARED_LIBRARIES := \ 10 libcutils liblog 11 12 LOCAL_MODULE:= libdownmix 13 14 LOCAL_MODULE_TAGS := optional 15 16 LOCAL_MODULE_RELATIVE_PATH := soundfx 17 18 LOCAL_C_INCLUDES := \ 19 $(call include-path-for, audio-effects) \ 20 $(call include-path-for, audio-utils) 21 22 LOCAL_CFLAGS += -fvisibility=hidden 23 24 include $(BUILD_SHARED_LIBRARY) 25