Ray Essick | 3938dc6 | 2016-11-01 08:56:56 -0700 | [diff] [blame] | 1 | # Media Statistics service |
| 2 | # |
| 3 | LOCAL_PATH:= $(call my-dir) |
| 4 | |
| 5 | include $(CLEAR_VARS) |
| 6 | |
| 7 | LOCAL_SRC_FILES:= \ |
Ray Essick | 2e9c63b | 2017-03-29 15:16:44 -0700 | [diff] [blame] | 8 | main_mediametrics.cpp \ |
Ray Essick | d38e174 | 2017-01-23 15:17:06 -0800 | [diff] [blame] | 9 | MediaAnalyticsService.cpp |
Ray Essick | 3938dc6 | 2016-11-01 08:56:56 -0700 | [diff] [blame] | 10 | |
| 11 | LOCAL_SHARED_LIBRARIES := \ |
Ray Essick | d38e174 | 2017-01-23 15:17:06 -0800 | [diff] [blame] | 12 | libcutils \ |
| 13 | liblog \ |
| 14 | libmedia \ |
| 15 | libutils \ |
| 16 | libbinder \ |
| 17 | libdl \ |
| 18 | libgui \ |
| 19 | libmedia \ |
| 20 | libmediautils \ |
Ray Essick | 0f0c9b5 | 2017-04-05 14:00:23 -0700 | [diff] [blame] | 21 | libmediametrics \ |
Ray Essick | d38e174 | 2017-01-23 15:17:06 -0800 | [diff] [blame] | 22 | libstagefright_foundation \ |
| 23 | libutils |
Ray Essick | 3938dc6 | 2016-11-01 08:56:56 -0700 | [diff] [blame] | 24 | |
| 25 | LOCAL_STATIC_LIBRARIES := \ |
Ray Essick | 3938dc6 | 2016-11-01 08:56:56 -0700 | [diff] [blame] | 26 | libregistermsext |
| 27 | |
Ray Essick | d38e174 | 2017-01-23 15:17:06 -0800 | [diff] [blame] | 28 | LOCAL_C_INCLUDES := \ |
| 29 | $(TOP)/frameworks/av/media/libstagefright/include \ |
| 30 | $(TOP)/frameworks/av/media/libstagefright/rtsp \ |
| 31 | $(TOP)/frameworks/av/media/libstagefright/wifi-display \ |
| 32 | $(TOP)/frameworks/av/media/libstagefright/webm \ |
| 33 | $(TOP)/frameworks/av/include/media \ |
| 34 | $(TOP)/frameworks/av/include/camera \ |
| 35 | $(TOP)/frameworks/native/include/media/openmax \ |
| 36 | $(TOP)/frameworks/native/include/media/hardware \ |
Neil Fuller | c1a30c4 | 2018-07-10 15:46:24 +0100 | [diff] [blame] | 37 | $(TOP)/external/tremolo/Tremolo |
Ray Essick | 3938dc6 | 2016-11-01 08:56:56 -0700 | [diff] [blame] | 38 | |
Ray Essick | 3938dc6 | 2016-11-01 08:56:56 -0700 | [diff] [blame] | 39 | |
Ray Essick | d38e174 | 2017-01-23 15:17:06 -0800 | [diff] [blame] | 40 | LOCAL_MODULE:= mediametrics |
Ray Essick | 3938dc6 | 2016-11-01 08:56:56 -0700 | [diff] [blame] | 41 | |
Ray Essick | d38e174 | 2017-01-23 15:17:06 -0800 | [diff] [blame] | 42 | LOCAL_INIT_RC := mediametrics.rc |
| 43 | |
| 44 | LOCAL_CFLAGS := -Werror -Wall -Wno-error=deprecated-declarations |
| 45 | LOCAL_CLANG := true |
Ray Essick | 3938dc6 | 2016-11-01 08:56:56 -0700 | [diff] [blame] | 46 | |
| 47 | include $(BUILD_EXECUTABLE) |