2009-11-13 04:49:14 +00:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES:= CameraServiceTest.cpp
|
|
|
|
|
|
|
|
LOCAL_MODULE:= CameraServiceTest
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
|
|
frameworks/base/libs
|
|
|
|
|
|
|
|
LOCAL_CFLAGS :=
|
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES += \
|
2009-12-10 00:32:04 +00:00
|
|
|
libbinder \
|
2009-11-13 04:49:14 +00:00
|
|
|
libcutils \
|
|
|
|
libutils \
|
2010-02-10 01:46:37 +00:00
|
|
|
libui \
|
|
|
|
libcamera_client \
|
|
|
|
libsurfaceflinger_client
|
2009-11-13 04:49:14 +00:00
|
|
|
|
2010-05-14 04:42:54 +00:00
|
|
|
# Disable it because the ISurface interface may change, and before we have a
|
|
|
|
# chance to fix this test, we don't want to break normal builds.
|
|
|
|
#include $(BUILD_EXECUTABLE)
|