and deleted the duplicate header files in /frameworks/base o related-to-bug: 6044887 Change-Id: I17e0692d9a9b5c8796ded36677c833ca8ab36795
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
#
|
|
# libmediaplayerservice
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
MediaRecorderClient.cpp \
|
|
MediaPlayerService.cpp \
|
|
MetadataRetrieverClient.cpp \
|
|
TestPlayerStub.cpp \
|
|
MidiMetadataRetriever.cpp \
|
|
MidiFile.cpp \
|
|
StagefrightPlayer.cpp \
|
|
StagefrightRecorder.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libutils \
|
|
libbinder \
|
|
libvorbisidec \
|
|
libsonivox \
|
|
libmedia \
|
|
libcamera_client \
|
|
libandroid_runtime \
|
|
libstagefright \
|
|
libstagefright_omx \
|
|
libstagefright_foundation \
|
|
libgui \
|
|
libdl \
|
|
libaah_rtp
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libstagefright_nuplayer \
|
|
libstagefright_rtsp \
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(JNI_H_INCLUDE) \
|
|
$(call include-path-for, graphics corecg) \
|
|
$(TOP)/frameworks/base/media/libstagefright/include \
|
|
$(TOP)/frameworks/base/media/libstagefright/rtsp \
|
|
$(TOP)/frameworks/native/include/media/openmax \
|
|
$(TOP)/external/tremolo/Tremolo
|
|
|
|
LOCAL_MODULE:= libmediaplayerservice
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|
|
|