8d65dd2653
Change-Id: Ieafe75a4550c273ad59b4518d7cd4c0fce0f7cce related-to-bug: 2370115
62 lines
1.4 KiB
Makefile
62 lines
1.4 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
ifneq ($(BUILD_WITHOUT_PV),true)
|
|
include external/opencore/Config.mk
|
|
endif
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
android_media_MediaPlayer.cpp \
|
|
android_media_MediaRecorder.cpp \
|
|
android_media_MediaScanner.cpp \
|
|
android_media_MediaMetadataRetriever.cpp \
|
|
android_media_ResampleInputStream.cpp \
|
|
android_media_MediaProfiles.cpp \
|
|
android_media_AmrInputStream.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libandroid_runtime \
|
|
libnativehelper \
|
|
libutils \
|
|
libbinder \
|
|
libmedia \
|
|
libskia \
|
|
libui \
|
|
libcutils \
|
|
libsurfaceflinger_client \
|
|
libstagefright \
|
|
libcamera_client
|
|
|
|
ifneq ($(BUILD_WITHOUT_PV),true)
|
|
|
|
LOCAL_SHARED_LIBRARIES += \
|
|
libopencore_player
|
|
else
|
|
LOCAL_CFLAGS += -DNO_OPENCORE
|
|
endif
|
|
|
|
LOCAL_STATIC_LIBRARIES :=
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
external/tremor/Tremor \
|
|
frameworks/base/core/jni \
|
|
frameworks/base/media/libmedia \
|
|
frameworks/base/media/libstagefright/codecs/amrnb/enc/src \
|
|
frameworks/base/media/libstagefright/codecs/amrnb/common \
|
|
frameworks/base/media/libstagefright/codecs/amrnb/common/include \
|
|
$(PV_INCLUDES) \
|
|
$(JNI_H_INCLUDE) \
|
|
$(call include-path-for, corecg graphics)
|
|
|
|
LOCAL_CFLAGS +=
|
|
|
|
LOCAL_LDLIBS := -lpthread
|
|
|
|
LOCAL_MODULE:= libmedia_jni
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
# build libsoundpool.so
|
|
# build libaudioeffect_jni.so
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|