Android.mk revision d7bee3a9d2ad76d073d91f0ee36d5ac5f9df480c
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    MediaPlayerFactory.cpp      \
13    MediaPlayerService.cpp      \
14    MediaRecorderClient.cpp     \
15    MetadataRetrieverClient.cpp \
16    MidiFile.cpp                \
17    MidiMetadataRetriever.cpp   \
18    RemoteDisplay.cpp           \
19    StagefrightPlayer.cpp       \
20    StagefrightRecorder.cpp     \
21    TestPlayerStub.cpp          \
22
23LOCAL_SHARED_LIBRARIES :=       \
24    libbinder                   \
25    libcamera_client            \
26    libcutils                   \
27    libdl                       \
28    libgui                      \
29    libmedia                    \
30    libmedia_native             \
31    libsonivox                  \
32    libstagefright              \
33    libstagefright_foundation   \
34    libstagefright_omx          \
35    libstagefright_wfd          \
36    libutils                    \
37    libvorbisidec               \
38
39LOCAL_STATIC_LIBRARIES :=       \
40    libstagefright_nuplayer     \
41    libstagefright_rtsp         \
42
43LOCAL_C_INCLUDES :=                                                 \
44    $(call include-path-for, graphics corecg)                       \
45    $(TOP)/frameworks/av/media/libstagefright/include               \
46    $(TOP)/frameworks/av/media/libstagefright/rtsp                  \
47    $(TOP)/frameworks/av/media/libstagefright/wifi-display          \
48    $(TOP)/frameworks/native/include/media/openmax                  \
49    $(TOP)/external/tremolo/Tremolo                                 \
50
51LOCAL_MODULE:= libmediaplayerservice
52
53include $(BUILD_SHARED_LIBRARY)
54
55include $(call all-makefiles-under,$(LOCAL_PATH))
56