Andy Hung | 068561c | 2017-01-03 17:09:32 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_SRC_FILES := \ |
| 6 | AudioMixer.cpp.arm \ |
| 7 | AudioResampler.cpp.arm \ |
| 8 | AudioResamplerCubic.cpp.arm \ |
| 9 | AudioResamplerSinc.cpp.arm \ |
| 10 | AudioResamplerDyn.cpp.arm \ |
| 11 | BufferProviders.cpp \ |
Andy Hung | 8981605 | 2017-01-11 17:08:23 -0800 | [diff] [blame] | 12 | RecordBufferConverter.cpp \ |
Andy Hung | 068561c | 2017-01-03 17:09:32 -0800 | [diff] [blame] | 13 | |
| 14 | LOCAL_C_INCLUDES := \ |
| 15 | $(TOP) \ |
| 16 | $(call include-path-for, audio-utils) \ |
Vijay Venkatraman | e2b4384 | 2017-02-02 13:35:37 -0800 | [diff] [blame^] | 17 | $(LOCAL_PATH)/include \ |
| 18 | |
| 19 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
Andy Hung | 068561c | 2017-01-03 17:09:32 -0800 | [diff] [blame] | 20 | |
| 21 | LOCAL_SHARED_LIBRARIES := \ |
| 22 | libaudiohal \ |
| 23 | libaudioutils \ |
| 24 | libcutils \ |
| 25 | liblog \ |
| 26 | libnbaio \ |
| 27 | libsonic \ |
| 28 | libutils \ |
| 29 | |
| 30 | LOCAL_MODULE := libaudioprocessing |
| 31 | |
| 32 | LOCAL_CFLAGS := -Werror -Wall |
| 33 | |
| 34 | # uncomment to disable NEON on architectures that actually do support NEON, for benchmarking |
| 35 | #LOCAL_CFLAGS += -DUSE_NEON=false |
| 36 | |
| 37 | include $(BUILD_SHARED_LIBRARY) |
| 38 | |
| 39 | include $(call all-makefiles-under,$(LOCAL_PATH)) |