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
11
12LOCAL_MODULE:= libdownmix
13
14LOCAL_MODULE_TAGS := optional
15
16LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/soundfx
17
18ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true)
19LOCAL_LDLIBS += -ldl
20endif
21
22LOCAL_C_INCLUDES := \
23	$(call include-path-for, audio-effects) \
24	$(call include-path-for, audio-utils)
25
26LOCAL_PRELINK_MODULE := false
27
28include $(BUILD_SHARED_LIBRARY)
29