blob: b0dc42250faedc9171c140ee70a4e56342e44627 [file] [log] [blame]
Mike Lockwoodc59b2f92012-10-24 12:31:10 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
Andreas Gampecfedceb2014-09-30 21:48:18 -07005 screencap.cpp
Mike Lockwoodc59b2f92012-10-24 12:31:10 -07006
7LOCAL_SHARED_LIBRARIES := \
Andreas Gampecfedceb2014-09-30 21:48:18 -07008 libcutils \
9 libutils \
10 libbinder \
11 libskia \
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070012 libui \
13 libgui
14
15LOCAL_MODULE:= screencap
16
17LOCAL_MODULE_TAGS := optional
18
Andreas Gampecfedceb2014-09-30 21:48:18 -070019LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
20
Mike Lockwoodc59b2f92012-10-24 12:31:10 -070021include $(BUILD_EXECUTABLE)