blob: 2f16923de473fb1c507f9cc389c645c435be1af3 [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 \
16 libsurfaceflinger_client \
Jamie Gennisff2dc462010-12-20 11:51:31 -080017 libui \
18 libgui
Mathias Agopian000479f2010-02-09 17:46:37 -080019
20LOCAL_MODULE:= libcamera_client
21
22ifeq ($(TARGET_SIMULATOR),true)
23 LOCAL_LDLIBS += -lpthread
24endif
25
26include $(BUILD_SHARED_LIBRARY)