Android.mk revision 2e9c63b2fddfe313d1508118ff4f1bca65c0ffee
1# Media Statistics service
2#
3LOCAL_PATH:= $(call my-dir)
4
5include $(CLEAR_VARS)
6
7LOCAL_SRC_FILES:= \
8    main_mediametrics.cpp              \
9    MetricsSummarizerCodec.cpp         \
10    MetricsSummarizerExtractor.cpp     \
11    MetricsSummarizerPlayer.cpp        \
12    MetricsSummarizerRecorder.cpp      \
13    MetricsSummarizer.cpp              \
14    MediaAnalyticsService.cpp
15
16LOCAL_SHARED_LIBRARIES := \
17    libcutils                   \
18    liblog                      \
19    libmedia                    \
20    libutils                    \
21    libbinder                   \
22    libdl                       \
23    libgui                      \
24    libmedia                    \
25    libmediautils               \
26    libstagefright_foundation   \
27    libutils
28
29LOCAL_STATIC_LIBRARIES := \
30        libregistermsext
31
32LOCAL_C_INCLUDES :=                                                 \
33    $(TOP)/frameworks/av/media/libstagefright/include               \
34    $(TOP)/frameworks/av/media/libstagefright/rtsp                  \
35    $(TOP)/frameworks/av/media/libstagefright/wifi-display          \
36    $(TOP)/frameworks/av/media/libstagefright/webm                  \
37    $(TOP)/frameworks/av/include/media                              \
38    $(TOP)/frameworks/av/include/camera                             \
39    $(TOP)/frameworks/native/include/media/openmax                  \
40    $(TOP)/frameworks/native/include/media/hardware                 \
41    $(TOP)/external/tremolo/Tremolo                                 \
42    libcore/include
43
44
45LOCAL_MODULE:= mediametrics
46
47LOCAL_INIT_RC := mediametrics.rc
48
49LOCAL_CFLAGS := -Werror -Wall -Wno-error=deprecated-declarations
50LOCAL_CLANG := true
51
52include $(BUILD_EXECUTABLE)
53