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 liblog \ 22 libspeexresampler 23 24 include $(BUILD_SHARED_LIBRARY) 25 26 include $(CLEAR_VARS) 27 LOCAL_MODULE := libaudioutils 28 LOCAL_MODULE_TAGS := optional 29 LOCAL_SRC_FILES := \ 30 primitives.c 31 LOCAL_C_INCLUDES += \ 32 $(call include-path-for, audio-utils) 33 include $(BUILD_HOST_STATIC_LIBRARY) 34 35 include $(CLEAR_VARS) 36 37 LOCAL_MODULE := libsndfile 38 LOCAL_MODULE_TAGS := optional 39 40 LOCAL_SRC_FILES := \ 41 tinysndfile.c 42 43 LOCAL_C_INCLUDES += \ 44 $(call include-path-for, audio-utils) 45 46 #LOCAL_SHARED_LIBRARIES := libaudioutils 47 48 include $(BUILD_STATIC_LIBRARY) 49 50 include $(CLEAR_VARS) 51 52 LOCAL_MODULE := libsndfile 53 LOCAL_MODULE_TAGS := optional 54 55 LOCAL_SRC_FILES := \ 56 tinysndfile.c 57 58 LOCAL_C_INCLUDES += \ 59 $(call include-path-for, audio-utils) 60 61 #LOCAL_SHARED_LIBRARIES := libaudioutils 62 63 include $(BUILD_HOST_STATIC_LIBRARY) 64