Android.mk revision 114819633470ebd5b346c13c2a82a0025d2d39c0
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    libcrypto                   \
30    libcutils                   \
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