blob: 8a853b67ff7d87a9b52a1b8d571b700fc103581c [file] [log] [blame]
Eric Laurent73fb11d2013-04-09 11:24:13 -07001LOCAL_PATH:= $(call my-dir)
2
3# audio preprocessing wrapper
4include $(CLEAR_VARS)
5
6LOCAL_MODULE:= libqcomvoiceprocessing
7LOCAL_MODULE_TAGS := optional
Apoorv Raghuvanshi1b555f72014-05-29 12:48:15 -07008LOCAL_MODULE_RELATIVE_PATH := soundfx
Naresh Tanniru10758b62017-06-05 21:05:53 +05309LOCAL_VENDOR_MODULE := true
Eric Laurent73fb11d2013-04-09 11:24:13 -070010
11LOCAL_SRC_FILES:= \
12 voice_processing.c
13
14LOCAL_C_INCLUDES += \
15 $(call include-path-for, audio-effects)
16
17LOCAL_SHARED_LIBRARIES := \
Dhananjay Kumara5d42b32017-01-11 21:22:16 +053018 liblog \
Eric Laurent73fb11d2013-04-09 11:24:13 -070019 libcutils
20
21LOCAL_SHARED_LIBRARIES += libdl
22
23LOCAL_CFLAGS += -fvisibility=hidden
24
Soumil Shah196157e2018-01-22 17:39:48 -080025LOCAL_CFLAGS += -Wno-unused-variable
26LOCAL_CFLAGS += -Wno-sign-compare
27LOCAL_CFLAGS += -Wno-unused-parameter
28LOCAL_CFLAGS += -Wno-unused-label
29LOCAL_CFLAGS += -Wno-gnu-designator
30LOCAL_CFLAGS += -Wno-typedef-redefinition
31LOCAL_CFLAGS += -Wno-shorten-64-to-32
32LOCAL_CFLAGS += -Wno-tautological-compare
33LOCAL_CFLAGS += -Wno-unused-function
34LOCAL_CFLAGS += -Wno-unused-local-typedef
35
Eric Laurent73fb11d2013-04-09 11:24:13 -070036include $(BUILD_SHARED_LIBRARY)