Android.mk revision c41590251aa84c078c942d258e838aad814b73a5
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    libsonivox                  \
32    libstagefright              \
33    libstagefright_foundation   \
34    libstagefright_omx          \
35    libstagefright_wfd          \
36    libutils                    \
37    libvorbisidec               \
38
39LOCAL_STATIC_LIBRARIES :=       \
40    libstagefright_nuplayer     \
41    libstagefright_rtsp         \
42
43LOCAL_C_INCLUDES :=                                                 \
44    $(call include-path-for, graphics corecg)                       \
45    $(TOP)/frameworks/av/media/libstagefright/include               \
46    $(TOP)/frameworks/av/media/libstagefright/rtsp                  \
47    $(TOP)/frameworks/av/media/libstagefright/wifi-display          \
48    $(TOP)/frameworks/native/include/media/openmax                  \
49    $(TOP)/external/tremolo/Tremolo                                 \
50
51LOCAL_MODULE:= libmediaplayerservice
52
53include $(BUILD_SHARED_LIBRARY)
54
55include $(call all-makefiles-under,$(LOCAL_PATH))
56