Home | History | Annotate | Download | only in audio_utils
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 
      5 LOCAL_MODULE := libaudioutils
      6 LOCAL_MODULE_TAGS := optional
      7 
      8 LOCAL_SRC_FILES:= \
      9 	fixedfft.cpp.arm \
     10 	primitives.c \
     11 	resampler.c \
     12 	echo_reference.c
     13 
     14 LOCAL_C_INCLUDES += $(call include-path-for, speex)
     15 LOCAL_C_INCLUDES += \
     16 	$(call include-path-for, speex) \
     17 	$(call include-path-for, audio-utils)
     18 
     19 LOCAL_SHARED_LIBRARIES := \
     20 	libcutils \
     21 	libspeexresampler
     22 
     23 include $(BUILD_SHARED_LIBRARY)
     24