Android.mk revision 0e8928bf4f2b01b783f6da97d15e8f1abb0fd7d7
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    RemoteDisplay.cpp           \
19    SharedLibrary.cpp           \
20    StagefrightPlayer.cpp       \
21    StagefrightRecorder.cpp     \
22    TestPlayerStub.cpp          \
23    VideoFrameScheduler.cpp     \
24
25LOCAL_SHARED_LIBRARIES :=       \
26    libbinder                   \
27    libcamera_client            \
28    libcrypto                   \
29    libcutils                   \
30    libdrmframework             \
31    liblog                      \
32    libdl                       \
33    libgui                      \
34    libmedia                    \
35    libsonivox                  \
36    libstagefright              \
37    libstagefright_foundation   \
38    libstagefright_httplive     \
39    libstagefright_omx          \
40    libstagefright_wfd          \
41    libutils                    \
42    libvorbisidec               \
43
44LOCAL_STATIC_LIBRARIES :=       \
45    libstagefright_nuplayer     \
46    libstagefright_rtsp         \
47
48LOCAL_C_INCLUDES :=                                                 \
49    $(TOP)/frameworks/av/media/libstagefright/include               \
50    $(TOP)/frameworks/av/media/libstagefright/rtsp                  \
51    $(TOP)/frameworks/av/media/libstagefright/wifi-display          \
52    $(TOP)/frameworks/av/media/libstagefright/webm                  \
53    $(TOP)/frameworks/native/include/media/openmax                  \
54    $(TOP)/external/tremolo/Tremolo                                 \
55
56LOCAL_MODULE:= libmediaplayerservice
57
58LOCAL_32_BIT_ONLY := true
59
60include $(BUILD_SHARED_LIBRARY)
61
62include $(call all-makefiles-under,$(LOCAL_PATH))
63