Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | # audio preprocessing wrapper |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | LOCAL_MODULE:= libqcomvoiceprocessing |
| 7 | LOCAL_MODULE_TAGS := optional |
Diego Wilson | 8c83e0a | 2017-03-17 15:29:43 -0700 | [diff] [blame] | 8 | LOCAL_MODULE_OWNER := qcom |
| 9 | LOCAL_PROPRIETARY_MODULE := true |
Ajay Dudani | 8954103 | 2015-03-30 17:39:24 -0700 | [diff] [blame] | 10 | LOCAL_MODULE_RELATIVE_PATH := soundfx |
Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 11 | |
| 12 | LOCAL_SRC_FILES:= \ |
| 13 | voice_processing.c |
| 14 | |
Chih-Hung Hsieh | aa016a5 | 2017-11-06 11:39:27 -0800 | [diff] [blame] | 15 | LOCAL_CFLAGS += \ |
| 16 | -Wall \ |
| 17 | -Werror \ |
| 18 | -Wno-unused-function \ |
| 19 | -Wno-unused-variable \ |
| 20 | |
Kevin Rocard | bae0dcb | 2018-01-24 06:13:37 +0000 | [diff] [blame] | 21 | LOCAL_C_INCLUDES += \ |
| 22 | $(call include-path-for, audio-effects) |
| 23 | |
Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 24 | LOCAL_SHARED_LIBRARIES := \ |
Dimitry Ivanov | 48e428e | 2016-02-16 10:30:18 -0800 | [diff] [blame] | 25 | liblog \ |
Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 26 | libcutils |
| 27 | |
| 28 | LOCAL_SHARED_LIBRARIES += libdl |
| 29 | |
| 30 | LOCAL_CFLAGS += -fvisibility=hidden |
| 31 | |
Kevin Rocard | bae0dcb | 2018-01-24 06:13:37 +0000 | [diff] [blame] | 32 | LOCAL_HEADER_LIBRARIES += libhardware_headers |
Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 33 | include $(BUILD_SHARED_LIBRARY) |