Android.mk revision 44a7e42f0310831e6a846d1b6bb40bf3a399bf6d
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	libaah_rtp
37
38LOCAL_STATIC_LIBRARIES := \
39        libstagefright_nuplayer                 \
40        libstagefright_rtsp                     \
41
42LOCAL_C_INCLUDES :=                                               \
43	$(call include-path-for, graphics corecg)                       \
44	$(TOP)/frameworks/av/media/libstagefright/include               \
45	$(TOP)/frameworks/av/media/libstagefright/rtsp                  \
46	$(TOP)/frameworks/native/include/media/openmax                  \
47	$(TOP)/external/tremolo/Tremolo                                 \
48
49LOCAL_MODULE:= libmediaplayerservice
50
51include $(BUILD_SHARED_LIBRARY)
52
53include $(call all-makefiles-under,$(LOCAL_PATH))
54
55