blob: 63db4b17fbaf804c88320c219bed434b5ccf089e [file] [log] [blame]
Eric Laurent73fb11d2013-04-09 11:24:13 -07001LOCAL_PATH:= $(call my-dir)
2
3# audio preprocessing wrapper
4include $(CLEAR_VARS)
5
Abhishek Arpurece112352018-01-31 21:29:03 +05306LOCAL_CFLAGS += -Wno-unused-variable -Wno-gnu-designator -Wno-unused-value -Wno-unused-function
7
Eric Laurent73fb11d2013-04-09 11:24:13 -07008LOCAL_MODULE:= libqcomvoiceprocessing
9LOCAL_MODULE_TAGS := optional
Apoorv Raghuvanshi1b555f72014-05-29 12:48:15 -070010LOCAL_MODULE_RELATIVE_PATH := soundfx
Naresh Tanniru10758b62017-06-05 21:05:53 +053011LOCAL_VENDOR_MODULE := true
Eric Laurent73fb11d2013-04-09 11:24:13 -070012
13LOCAL_SRC_FILES:= \
14 voice_processing.c
15
16LOCAL_C_INCLUDES += \
17 $(call include-path-for, audio-effects)
18
19LOCAL_SHARED_LIBRARIES := \
Dhananjay Kumara5d42b32017-01-11 21:22:16 +053020 liblog \
Eric Laurent73fb11d2013-04-09 11:24:13 -070021 libcutils
22
23LOCAL_SHARED_LIBRARIES += libdl
24
25LOCAL_CFLAGS += -fvisibility=hidden
26
Soumil Shah196157e2018-01-22 17:39:48 -080027LOCAL_CFLAGS += -Wno-unused-variable
28LOCAL_CFLAGS += -Wno-sign-compare
29LOCAL_CFLAGS += -Wno-unused-parameter
30LOCAL_CFLAGS += -Wno-unused-label
31LOCAL_CFLAGS += -Wno-gnu-designator
32LOCAL_CFLAGS += -Wno-typedef-redefinition
33LOCAL_CFLAGS += -Wno-shorten-64-to-32
34LOCAL_CFLAGS += -Wno-tautological-compare
35LOCAL_CFLAGS += -Wno-unused-function
36LOCAL_CFLAGS += -Wno-unused-local-typedef
37
Eric Laurent73fb11d2013-04-09 11:24:13 -070038include $(BUILD_SHARED_LIBRARY)