blob: e33fb500cd93507bdee3621bbc5f6bb77225edc5 [file] [log] [blame]
Igor Murashkin1d880232013-02-20 16:50:13 -08001CAMERA_CLIENT_LOCAL_PATH:= $(call my-dir)
2include $(call all-subdir-makefiles)
Mathias Agopian3cf61352010-02-09 17:46:37 -08003include $(CLEAR_VARS)
4
Igor Murashkin1d880232013-02-20 16:50:13 -08005LOCAL_PATH := $(CAMERA_CLIENT_LOCAL_PATH)
6
Mathias Agopian3cf61352010-02-09 17:46:37 -08007LOCAL_SRC_FILES:= \
8 Camera.cpp \
Igor Murashkin7efa5202013-02-13 15:53:56 -08009 CameraMetadata.cpp \
Mathias Agopian3cf61352010-02-09 17:46:37 -080010 CameraParameters.cpp \
11 ICamera.cpp \
12 ICameraClient.cpp \
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +080013 ICameraService.cpp \
Igor Murashkinbfc99152013-02-27 12:55:20 -080014 ICameraServiceListener.cpp \
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +080015 ICameraRecordingProxy.cpp \
Igor Murashkin634a5152013-02-20 17:15:11 -080016 ICameraRecordingProxyListener.cpp \
17 IProCameraUser.cpp \
18 IProCameraCallbacks.cpp \
19 ProCamera.cpp \
Igor Murashkinc073ba52013-02-26 14:32:34 -080020 CameraBase.cpp \
Mathias Agopian3cf61352010-02-09 17:46:37 -080021
22LOCAL_SHARED_LIBRARIES := \
23 libcutils \
24 libutils \
25 libbinder \
26 libhardware \
Jamie Gennisbfa33aa2010-12-20 11:51:31 -080027 libui \
Igor Murashkin7efa5202013-02-13 15:53:56 -080028 libgui \
29 libcamera_metadata \
30
31LOCAL_C_INCLUDES += \
Igor Murashkin1d880232013-02-20 16:50:13 -080032 system/media/camera/include \
Mathias Agopian3cf61352010-02-09 17:46:37 -080033
34LOCAL_MODULE:= libcamera_client
35
Mathias Agopian3cf61352010-02-09 17:46:37 -080036include $(BUILD_SHARED_LIBRARY)