Android.mk revision c661ae6165338fd5f0bca50a63058b4bcd6def4b
1LOCAL_PATH:= $(call my-dir)
2
3#
4# libmediaplayerservice
5#
6
7include $(CLEAR_VARS)
8
9LOCAL_SRC_FILES:=               \
10    ActivityManager.cpp         \
11    HDCP.cpp                    \
12    MediaPlayerFactory.cpp      \
13    MediaPlayerService.cpp      \
14    MediaRecorderClient.cpp     \
15    MetadataRetrieverClient.cpp \
16    RemoteDisplay.cpp           \
17    StagefrightRecorder.cpp     \
18    TestPlayerStub.cpp          \
19
20LOCAL_SHARED_LIBRARIES :=       \
21    libbinder                   \
22    libcrypto                   \
23    libcutils                   \
24    libdrmframework             \
25    liblog                      \
26    libdl                       \
27    libgui                      \
28    libmedia                    \
29    libmediautils               \
30    libmemunreachable           \
31    libstagefright              \
32    libstagefright_foundation   \
33    libstagefright_httplive     \
34    libstagefright_omx          \
35    libstagefright_wfd          \
36    libutils                    \
37
38LOCAL_STATIC_LIBRARIES :=       \
39    libstagefright_nuplayer     \
40    libstagefright_rtsp         \
41    libstagefright_timedtext    \
42
43LOCAL_EXPORT_SHARED_LIBRARY_HEADERS := libmedia
44
45LOCAL_C_INCLUDES :=                                                 \
46    $(TOP)/frameworks/av/media/libstagefright/include               \
47    $(TOP)/frameworks/av/media/libstagefright/rtsp                  \
48    $(TOP)/frameworks/av/media/libstagefright/wifi-display          \
49    $(TOP)/frameworks/av/media/libstagefright/webm                  \
50    $(TOP)/frameworks/av/include/media                              \
51    $(TOP)/frameworks/av/include/camera                             \
52    $(TOP)/frameworks/native/include/media/openmax                  \
53    $(TOP)/frameworks/native/include/media/hardware                 \
54    $(TOP)/external/tremolo/Tremolo                                 \
55
56LOCAL_CFLAGS += -Werror -Wno-error=deprecated-declarations -Wall
57
58LOCAL_MODULE:= libmediaplayerservice
59
60LOCAL_32_BIT_ONLY := true
61
62include $(BUILD_SHARED_LIBRARY)
63
64include $(call all-makefiles-under,$(LOCAL_PATH))
65