Android.mk revision 541d942000c338a15dc4b361b15b72864640d2bf
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