blob: 03ff229dacdfc3790e6c9cd3fb04a62d154d277b [file] [log] [blame]
Mathias Agopian3cf61352010-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 \
17 libui
18
19LOCAL_MODULE:= libcamera_client
20
21ifeq ($(TARGET_SIMULATOR),true)
22 LOCAL_LDLIBS += -lpthread
23endif
24
25include $(BUILD_SHARED_LIBRARY)