Home | History | Annotate | Download | only in libmediaplayerservice
      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     MediaRecorderClient.cpp     \
     13     MediaPlayerService.cpp      \
     14     MetadataRetrieverClient.cpp \
     15     TestPlayerStub.cpp          \
     16     MidiMetadataRetriever.cpp   \
     17     MidiFile.cpp                \
     18     StagefrightPlayer.cpp       \
     19     StagefrightRecorder.cpp
     20 
     21 LOCAL_SHARED_LIBRARIES :=     		\
     22 	libcutils             			\
     23 	libutils              			\
     24 	libbinder             			\
     25 	libvorbisidec         			\
     26 	libsonivox            			\
     27 	libmedia              			\
     28 	libmedia_native       			\
     29 	libcamera_client      			\
     30 	libstagefright        			\
     31 	libstagefright_omx    			\
     32 	libstagefright_foundation       \
     33 	libgui                          \
     34 	libdl                           \
     35 	libaah_rtp
     36 
     37 LOCAL_STATIC_LIBRARIES := \
     38         libstagefright_nuplayer                 \
     39         libstagefright_rtsp                     \
     40 
     41 LOCAL_C_INCLUDES :=                                               \
     42 	$(call include-path-for, graphics corecg)                       \
     43 	$(TOP)/frameworks/av/media/libstagefright/include               \
     44 	$(TOP)/frameworks/av/media/libstagefright/rtsp                  \
     45 	$(TOP)/frameworks/native/include/media/openmax                  \
     46 	$(TOP)/external/tremolo/Tremolo                                 \
     47 
     48 LOCAL_MODULE:= libmediaplayerservice
     49 
     50 include $(BUILD_SHARED_LIBRARY)
     51 
     52 include $(call all-makefiles-under,$(LOCAL_PATH))
     53 
     54