2009-11-13 12:49:14 +08: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-09 16:32:04 -08:00
|
|
|
libbinder \
|
2009-11-13 12:49:14 +08:00
|
|
|
libcutils \
|
|
|
|
libutils \
|
2010-02-09 17:46:37 -08:00
|
|
|
libui \
|
|
|
|
libcamera_client \
|
|
|
|
libsurfaceflinger_client
|
2009-11-13 12:49:14 +08:00
|
|
|
|
2010-05-14 12:42:54 +08: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)
|