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