blob: b17b3d22044dc4360b40fdab59b7f4893ce8de56 [file] [log] [blame]
Mathias Agopian000479f2010-02-09 17:46:37 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 Camera.cpp \
6 CameraParameters.cpp \
7 ICamera.cpp \
8 ICameraClient.cpp \
9 ICameraService.cpp
10
11LOCAL_SHARED_LIBRARIES := \
12 libcutils \
13 libutils \
14 libbinder \
15 libhardware \
Jamie Gennisff2dc462010-12-20 11:51:31 -080016 libui \
17 libgui
Mathias Agopian000479f2010-02-09 17:46:37 -080018
19LOCAL_MODULE:= libcamera_client
20
21ifeq ($(TARGET_SIMULATOR),true)
22 LOCAL_LDLIBS += -lpthread
23endif
24
25include $(BUILD_SHARED_LIBRARY)