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 \ |
Kevin Rocard | 07be14f | 2018-01-24 06:14:03 +0000 | [diff] [blame] | 23 | libaudioutils \ |
Andy Hung | 068561c | 2017-01-03 17:09:32 -0800 | [diff] [blame] | 24 | libcutils \ |
| 25 | liblog \ |
| 26 | libnbaio \ |
Glenn Kasten | 8589ce7 | 2017-09-08 17:03:42 -0700 | [diff] [blame] | 27 | libnblog \ |
Andy Hung | 068561c | 2017-01-03 17:09:32 -0800 | [diff] [blame] | 28 | libsonic \ |
| 29 | libutils \ |
| 30 | |
| 31 | LOCAL_MODULE := libaudioprocessing |
| 32 | |
| 33 | LOCAL_CFLAGS := -Werror -Wall |
| 34 | |
| 35 | # uncomment to disable NEON on architectures that actually do support NEON, for benchmarking |
| 36 | #LOCAL_CFLAGS += -DUSE_NEON=false |
| 37 | |
| 38 | include $(BUILD_SHARED_LIBRARY) |
| 39 | |
| 40 | include $(call all-makefiles-under,$(LOCAL_PATH)) |