Ray Essick | 3938dc6 | 2016-11-01 08:56:56 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | # |
| 4 | # libmediaanalyticsservice |
| 5 | # |
| 6 | |
| 7 | include $(CLEAR_VARS) |
| 8 | |
| 9 | LOCAL_SRC_FILES:= \ |
| 10 | MediaAnalyticsService.cpp \ |
| 11 | |
| 12 | LOCAL_SHARED_LIBRARIES := \ |
| 13 | libbinder \ |
| 14 | libcutils \ |
| 15 | liblog \ |
| 16 | libdl \ |
| 17 | libgui \ |
| 18 | libmedia \ |
| 19 | libmediautils \ |
| 20 | libstagefright_foundation \ |
| 21 | libutils |
| 22 | |
| 23 | LOCAL_EXPORT_SHARED_LIBRARY_HEADERS := libmedia |
| 24 | |
| 25 | LOCAL_C_INCLUDES := \ |
| 26 | $(TOP)/frameworks/av/media/libstagefright/include \ |
| 27 | $(TOP)/frameworks/av/media/libstagefright/rtsp \ |
| 28 | $(TOP)/frameworks/av/media/libstagefright/wifi-display \ |
| 29 | $(TOP)/frameworks/av/media/libstagefright/webm \ |
| 30 | $(TOP)/frameworks/av/include/media \ |
| 31 | $(TOP)/frameworks/av/include/camera \ |
| 32 | $(TOP)/frameworks/native/include/media/openmax \ |
| 33 | $(TOP)/frameworks/native/include/media/hardware \ |
| 34 | $(TOP)/external/tremolo/Tremolo \ |
| 35 | libcore/include \ |
| 36 | |
| 37 | LOCAL_CFLAGS += -Werror -Wno-error=deprecated-declarations -Wall |
| 38 | LOCAL_CLANG := true |
| 39 | |
| 40 | LOCAL_MODULE:= libmediaanalyticsservice |
| 41 | |
| 42 | include $(BUILD_SHARED_LIBRARY) |
| 43 | |
| 44 | include $(call all-makefiles-under,$(LOCAL_PATH)) |