bd882b1c87
Bug: 5010576 Change-Id: I04d722f258951a3078fe07899f5bbe8aac02a8e8
52 lines
1.4 KiB
Makefile
52 lines
1.4 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
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libstagefright_rtsp \
|
|
libstagefright_nuplayer \
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(JNI_H_INCLUDE) \
|
|
$(call include-path-for, graphics corecg) \
|
|
$(TOP)/frameworks/base/include/media/stagefright/openmax \
|
|
$(TOP)/frameworks/base/media/libstagefright/include \
|
|
$(TOP)/frameworks/base/media/libstagefright/rtsp \
|
|
$(TOP)/external/tremolo/Tremolo \
|
|
|
|
LOCAL_MODULE:= libmediaplayerservice
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|
|
|