From 3cf613507f1e2f7bd932d921a6e222e426fd3be4 Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Tue, 9 Feb 2010 17:46:37 -0800 Subject: split libsurfaceflinger_client and libcamera_client out of libui --- camera/Android.mk | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 camera/Android.mk (limited to 'camera/Android.mk') diff --git a/camera/Android.mk b/camera/Android.mk new file mode 100644 index 0000000..03ff229 --- /dev/null +++ b/camera/Android.mk @@ -0,0 +1,25 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES:= \ + Camera.cpp \ + CameraParameters.cpp \ + ICamera.cpp \ + ICameraClient.cpp \ + ICameraService.cpp + +LOCAL_SHARED_LIBRARIES := \ + libcutils \ + libutils \ + libbinder \ + libhardware \ + libsurfaceflinger_client \ + libui + +LOCAL_MODULE:= libcamera_client + +ifeq ($(TARGET_SIMULATOR),true) + LOCAL_LDLIBS += -lpthread +endif + +include $(BUILD_SHARED_LIBRARY) -- cgit v1.1