summaryrefslogtreecommitdiffstats
path: root/cmds/screencap/Android.mk
blob: 1a6e23e3a4932af9605cf8eebe7d0fa67b9c90a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
	screencap.cpp

LOCAL_SHARED_LIBRARIES := \
	libcutils \
	libutils \
	libbinder \
    libui \
    libsurfaceflinger_client

LOCAL_MODULE:= screencap

LOCAL_MODULE_TAGS := optional

include $(BUILD_EXECUTABLE)