Android.mk revision 88a5df93668cb2079d10fd55de25a333f5f43842
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    libui \
12    libsurfaceflinger_client
13
14LOCAL_MODULE:= screencap
15
16LOCAL_MODULE_TAGS := optional
17
18include $(BUILD_EXECUTABLE)
19