Android.mk revision 8ec1f2a4f3c72fe7472f8b8fa227f6b7bbc9279b
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    MediaRecorderClient.cpp     \
13    MediaPlayerFactory.cpp      \
14    MediaPlayerService.cpp      \
15    MetadataRetrieverClient.cpp \
16    TestPlayerStub.cpp          \
17    MidiMetadataRetriever.cpp   \
18    MidiFile.cpp                \
19    StagefrightPlayer.cpp       \
20    StagefrightRecorder.cpp
21
22LOCAL_SHARED_LIBRARIES :=     		\
23	libcutils             			\
24	libutils              			\
25	libbinder             			\
26	libvorbisidec         			\
27	libsonivox            			\
28	libmedia              			\
29	libmedia_native       			\
30	libcamera_client      			\
31	libstagefright        			\
32	libstagefright_omx    			\
33	libstagefright_foundation       \
34	libgui                          \
35	libdl
36
37LOCAL_STATIC_LIBRARIES := \
38        libstagefright_nuplayer                 \
39        libstagefright_rtsp                     \
40
41LOCAL_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
48LOCAL_MODULE:= libmediaplayerservice
49
50include $(BUILD_SHARED_LIBRARY)
51
52include $(call all-makefiles-under,$(LOCAL_PATH))
53
54