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 | |
Abhishek Arpure | ce11235 | 2018-01-31 21:29:03 +0530 | [diff] [blame] | 6 | LOCAL_CFLAGS += -Wno-unused-variable -Wno-gnu-designator -Wno-unused-value -Wno-unused-function |
| 7 | |
Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 8 | LOCAL_MODULE:= libqcomvoiceprocessing |
| 9 | LOCAL_MODULE_TAGS := optional |
Apoorv Raghuvanshi | 1b555f7 | 2014-05-29 12:48:15 -0700 | [diff] [blame] | 10 | LOCAL_MODULE_RELATIVE_PATH := soundfx |
Naresh Tanniru | 10758b6 | 2017-06-05 21:05:53 +0530 | [diff] [blame] | 11 | LOCAL_VENDOR_MODULE := true |
Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 12 | |
| 13 | LOCAL_SRC_FILES:= \ |
| 14 | voice_processing.c |
| 15 | |
| 16 | LOCAL_C_INCLUDES += \ |
| 17 | $(call include-path-for, audio-effects) |
| 18 | |
| 19 | LOCAL_SHARED_LIBRARIES := \ |
Dhananjay Kumar | a5d42b3 | 2017-01-11 21:22:16 +0530 | [diff] [blame] | 20 | liblog \ |
Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 21 | libcutils |
| 22 | |
| 23 | LOCAL_SHARED_LIBRARIES += libdl |
| 24 | |
Revathi Uddaraju | e8bd13c | 2018-04-02 21:27:54 +0530 | [diff] [blame^] | 25 | LOCAL_HEADER_LIBRARIES := libhardware_headers |
Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 26 | LOCAL_CFLAGS += -fvisibility=hidden |
| 27 | |
Soumil Shah | 196157e | 2018-01-22 17:39:48 -0800 | [diff] [blame] | 28 | LOCAL_CFLAGS += -Wno-unused-variable |
| 29 | LOCAL_CFLAGS += -Wno-sign-compare |
| 30 | LOCAL_CFLAGS += -Wno-unused-parameter |
| 31 | LOCAL_CFLAGS += -Wno-unused-label |
| 32 | LOCAL_CFLAGS += -Wno-gnu-designator |
| 33 | LOCAL_CFLAGS += -Wno-typedef-redefinition |
| 34 | LOCAL_CFLAGS += -Wno-shorten-64-to-32 |
| 35 | LOCAL_CFLAGS += -Wno-tautological-compare |
| 36 | LOCAL_CFLAGS += -Wno-unused-function |
| 37 | LOCAL_CFLAGS += -Wno-unused-local-typedef |
| 38 | |
Eric Laurent | 73fb11d | 2013-04-09 11:24:13 -0700 | [diff] [blame] | 39 | include $(BUILD_SHARED_LIBRARY) |