1LOCAL_PATH:= $(call my-dir)
2
3# Multichannel downmix effect library
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= \
7	EffectDownmix.c
8
9LOCAL_SHARED_LIBRARIES := \
10	libcutils liblog
11
12LOCAL_MODULE:= libdownmix
13
14LOCAL_MODULE_TAGS := optional
15
16LOCAL_MODULE_RELATIVE_PATH := soundfx
17
18LOCAL_C_INCLUDES := \
19	$(call include-path-for, audio-effects) \
20	$(call include-path-for, audio-utils)
21
22LOCAL_CFLAGS += -fvisibility=hidden
23
24include $(BUILD_SHARED_LIBRARY)
25