summaryrefslogtreecommitdiffstats
path: root/camera/Android.mk
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2010-02-09 17:46:37 -0800
committerMathias Agopian <mathias@google.com>2010-02-11 13:16:22 -0800
commit3cf613507f1e2f7bd932d921a6e222e426fd3be4 (patch)
tree20c9dd57e2227046ab1d6fc1185f4136c6dac12e /camera/Android.mk
parent988e3f0b2c74095deae580157c57935a98573052 (diff)
downloadframeworks_av-3cf613507f1e2f7bd932d921a6e222e426fd3be4.zip
frameworks_av-3cf613507f1e2f7bd932d921a6e222e426fd3be4.tar.gz
frameworks_av-3cf613507f1e2f7bd932d921a6e222e426fd3be4.tar.bz2
split libsurfaceflinger_client and libcamera_client out of libui
Diffstat (limited to 'camera/Android.mk')
-rw-r--r--camera/Android.mk25
1 files changed, 25 insertions, 0 deletions
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)