blob: 3052ad96662cf3d7979ac98a047806f12cdb3293 [file] [log] [blame]
Jean-Michel Trivi04c1e532012-03-02 10:59:56 -08001LOCAL_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 := \
Glenn Kasten33b38392012-03-13 15:59:35 -070023 $(call include-path-for, audio-effects) \
24 $(call include-path-for, audio-utils)
Jean-Michel Trivi04c1e532012-03-02 10:59:56 -080025
26LOCAL_PRELINK_MODULE := false
27
Marco Nelissen7f16b192012-10-25 16:05:57 -070028LOCAL_CFLAGS += -fvisibility=hidden
29
Jean-Michel Trivi04c1e532012-03-02 10:59:56 -080030include $(BUILD_SHARED_LIBRARY)