Android.mk revision 559bf2836f5da25b75bfb229fec0d20d540ee426
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    MediaPlayerService.cpp      \
14    MetadataRetrieverClient.cpp \
15    TestPlayerStub.cpp          \
16    MidiMetadataRetriever.cpp   \
17    MidiFile.cpp                \
18    StagefrightPlayer.cpp       \
19    StagefrightRecorder.cpp
20
21LOCAL_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
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