1LOCAL_PATH:= $(call my-dir) 2 3# 4# libmediaplayerservice 5# 6 7include $(CLEAR_VARS) 8 9LOCAL_SRC_FILES:= \ 10 ActivityManager.cpp \ 11 Crypto.cpp \ 12 Drm.cpp \ 13 HDCP.cpp \ 14 MediaPlayerFactory.cpp \ 15 MediaPlayerService.cpp \ 16 MediaRecorderClient.cpp \ 17 MetadataRetrieverClient.cpp \ 18 MidiFile.cpp \ 19 MidiMetadataRetriever.cpp \ 20 RemoteDisplay.cpp \ 21 SharedLibrary.cpp \ 22 StagefrightPlayer.cpp \ 23 StagefrightRecorder.cpp \ 24 TestPlayerStub.cpp \ 25 26LOCAL_SHARED_LIBRARIES := \ 27 libbinder \ 28 libcamera_client \ 29 libcutils \ 30 liblog \ 31 libdl \ 32 libgui \ 33 libmedia \ 34 libsonivox \ 35 libstagefright \ 36 libstagefright_foundation \ 37 libstagefright_httplive \ 38 libstagefright_omx \ 39 libstagefright_wfd \ 40 libutils \ 41 libvorbisidec \ 42 43LOCAL_STATIC_LIBRARIES := \ 44 libstagefright_nuplayer \ 45 libstagefright_rtsp \ 46 47LOCAL_C_INCLUDES := \ 48 $(call include-path-for, graphics corecg) \ 49 $(TOP)/frameworks/av/media/libstagefright/include \ 50 $(TOP)/frameworks/av/media/libstagefright/rtsp \ 51 $(TOP)/frameworks/av/media/libstagefright/wifi-display \ 52 $(TOP)/frameworks/native/include/media/openmax \ 53 $(TOP)/external/tremolo/Tremolo \ 54 55LOCAL_MODULE:= libmediaplayerservice 56 57include $(BUILD_SHARED_LIBRARY) 58 59include $(call all-makefiles-under,$(LOCAL_PATH)) 60