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