1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES:= \
6    qcamera_test.cpp \
7
8LOCAL_SHARED_LIBRARIES:= \
9    libdl \
10    libui \
11    libutils \
12    libcutils \
13    libbinder \
14    libmedia \
15    libmedia_native \
16    libui \
17    libgui \
18    libcamera_client
19
20LOCAL_C_INCLUDES += \
21    frameworks/base/include/ui \
22    frameworks/base/include/surfaceflinger \
23    frameworks/base/include/camera \
24    frameworks/base/include/media \
25
26LOCAL_MODULE:= camera_test
27LOCAL_MODULE_TAGS:= tests
28
29LOCAL_CFLAGS += -Wall -fno-short-enums -O0
30
31include $(BUILD_EXECUTABLE)
32