Mathias Agopian 08e83bb3b7 move native services under services/
moved surfaceflinger, audioflinger, cameraservice

all native services should now reside in this location.

Change-Id: Iee42b83dd2a94c3bf5107ab0895fe2dfcd5337a8
2010-07-14 17:59:35 -07:00

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)