1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5	screencap.cpp
6
7LOCAL_SHARED_LIBRARIES := \
8	libcutils \
9	libutils \
10	libbinder \
11	libskia \
12    libui \
13    libgui
14
15LOCAL_MODULE:= screencap
16
17LOCAL_MODULE_TAGS := optional
18
19include $(BUILD_EXECUTABLE)
20