summaryrefslogtreecommitdiffstats
path: root/media/libeffects/lvm/wrapper/Android.mk
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2010-08-04 06:33:52 -0700
committerEric Laurent <elaurent@google.com>2010-08-20 14:17:41 -0700
commitc59c6fd7f859b4010d788db89b8d4d76bbb70e57 (patch)
treecbdf7a007e63d834652abf8dbdb32a371a59d73c /media/libeffects/lvm/wrapper/Android.mk
parent3eb2ff224a12b5670f4f62f07a47ffb2fde01548 (diff)
downloadframeworks_av-c59c6fd7f859b4010d788db89b8d4d76bbb70e57.zip
frameworks_av-c59c6fd7f859b4010d788db89b8d4d76bbb70e57.tar.gz
frameworks_av-c59c6fd7f859b4010d788db89b8d4d76bbb70e57.tar.bz2
LVM release 1.05 delivery
- Click have been removed from the HP filter activation in the BassBosst Effect. - SessionId is now stored as a SessionNo - Effects now stop being called after a delay - Unix EOL fixed for .java and .xml - Updated lines limited to 100 characters. - Removed the remaining warnings from the wrapper code - Added reverb Change-Id: I03a2b3b5ee2286958f4901acc8d9b0daf9e2d7c6
Diffstat (limited to 'media/libeffects/lvm/wrapper/Android.mk')
-rw-r--r--media/libeffects/lvm/wrapper/Android.mk33
1 files changed, 33 insertions, 0 deletions
diff --git a/media/libeffects/lvm/wrapper/Android.mk b/media/libeffects/lvm/wrapper/Android.mk
index 7855dcd..2e9b9b4 100644
--- a/media/libeffects/lvm/wrapper/Android.mk
+++ b/media/libeffects/lvm/wrapper/Android.mk
@@ -34,3 +34,36 @@ LOCAL_C_INCLUDES += \
include $(BUILD_SHARED_LIBRARY)
+
+# reverb wrapper
+include $(CLEAR_VARS)
+
+LOCAL_ARM_MODE := arm
+
+LOCAL_SRC_FILES:= \
+ Reverb/EffectReverb.cpp
+
+LOCAL_MODULE:= libreverbwrapper
+
+LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/soundfx
+
+LOCAL_PRELINK_MODULE := false
+
+LOCAL_STATIC_LIBRARIES += libreverb
+
+LOCAL_SHARED_LIBRARIES := \
+ libcutils \
+
+ifeq ($(TARGET_SIMULATOR),true)
+LOCAL_LDLIBS += -ldl
+else
+LOCAL_SHARED_LIBRARIES += libdl
+endif
+
+LOCAL_C_INCLUDES += \
+ $(LOCAL_PATH)/Reverb \
+ $(LOCAL_PATH)/../lib/Common/lib/ \
+ $(LOCAL_PATH)/../lib/Reverb/lib/ \
+
+
+include $(BUILD_SHARED_LIBRARY) \ No newline at end of file