1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES:= CameraServiceTest.cpp
6
7LOCAL_MODULE:= CameraServiceTest
8
9LOCAL_MODULE_TAGS := tests
10
11LOCAL_C_INCLUDES += \
12                frameworks/av/libs
13
14LOCAL_CFLAGS :=
15
16LOCAL_SHARED_LIBRARIES += \
17		libbinder \
18                libcutils \
19                libutils \
20                libui \
21                libcamera_client \
22                libgui
23
24# Disable it because the ISurface interface may change, and before we have a
25# chance to fix this test, we don't want to break normal builds.
26#include $(BUILD_EXECUTABLE)
27