907c18afc6
Change-Id: I18dfcb073e6a8e72ad35f47d6884f5f2f62d3dca
27 lines
601 B
Makefile
27 lines
601 B
Makefile
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 += \
|
|
libbinder \
|
|
libcutils \
|
|
libutils \
|
|
libui \
|
|
libcamera_client \
|
|
libsurfaceflinger_client
|
|
|
|
# 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)
|