1 LOCAL_PATH:= $(call my-dir) 2 3 # 4 # libmediaplayerservice 5 # 6 7 include $(CLEAR_VARS) 8 9 LOCAL_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 26 LOCAL_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 43 LOCAL_STATIC_LIBRARIES := \ 44 libstagefright_nuplayer \ 45 libstagefright_rtsp \ 46 47 LOCAL_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 55 LOCAL_MODULE:= libmediaplayerservice 56 57 include $(BUILD_SHARED_LIBRARY) 58 59 include $(call all-makefiles-under,$(LOCAL_PATH)) 60