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