blob: e6334500ff47c0d86cfe1b681958fc6ebcf2a6bd [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 \
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070019 camera2/ICameraDeviceUser.cpp \
20 camera2/ICameraDeviceCallbacks.cpp \
21 camera2/CaptureRequest.cpp \
Igor Murashkin634a5152013-02-20 17:15:11 -080022 ProCamera.cpp \
Igor Murashkinc073ba52013-02-26 14:32:34 -080023 CameraBase.cpp \
Mathias Agopian3cf61352010-02-09 17:46:37 -080024
25LOCAL_SHARED_LIBRARIES := \
26 libcutils \
27 libutils \
Ying Wangda0dc0a2013-04-09 21:53:49 -070028 liblog \
Mathias Agopian3cf61352010-02-09 17:46:37 -080029 libbinder \
30 libhardware \
Jamie Gennisbfa33aa2010-12-20 11:51:31 -080031 libui \
Igor Murashkin7efa5202013-02-13 15:53:56 -080032 libgui \
33 libcamera_metadata \
34
35LOCAL_C_INCLUDES += \
Igor Murashkin1d880232013-02-20 16:50:13 -080036 system/media/camera/include \
Mathias Agopian3cf61352010-02-09 17:46:37 -080037
38LOCAL_MODULE:= libcamera_client
39
Mathias Agopian3cf61352010-02-09 17:46:37 -080040include $(BUILD_SHARED_LIBRARY)