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