Moved specific effect header files to system/media/audio_effects/include/audio_effects and renamed to lower case (effect_xxx.h). Change-Id: Icfc2264bfd013cab0395d7e310ada636b9fe3621
21 lines
366 B
Makefile
21 lines
366 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
android_media_AudioEffect.cpp \
|
|
android_media_Visualizer.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libutils \
|
|
libandroid_runtime \
|
|
libnativehelper \
|
|
libmedia
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
system/media/audio_effects/include
|
|
|
|
LOCAL_MODULE:= libaudioeffect_jni
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|