Android.mk revision 441a78d5e224e0d67f9b52fa9adc795c6944159b
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    libdl                       \
31    libgui                      \
32    libmedia                    \
33    libsonivox                  \
34    libstagefright              \
35    libstagefright_foundation   \
36    libstagefright_omx          \
37    libstagefright_wfd          \
38    libutils                    \
39    libvorbisidec               \
40
41LOCAL_STATIC_LIBRARIES :=       \
42    libstagefright_nuplayer     \
43    libstagefright_rtsp         \
44
45LOCAL_C_INCLUDES :=                                                 \
46    $(call include-path-for, graphics corecg)                       \
47    $(TOP)/frameworks/av/media/libstagefright/include               \
48    $(TOP)/frameworks/av/media/libstagefright/rtsp                  \
49    $(TOP)/frameworks/av/media/libstagefright/wifi-display          \
50    $(TOP)/frameworks/native/include/media/openmax                  \
51    $(TOP)/external/tremolo/Tremolo                                 \
52
53LOCAL_MODULE:= libmediaplayerservice
54
55include $(BUILD_SHARED_LIBRARY)
56
57include $(call all-makefiles-under,$(LOCAL_PATH))
58