Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 1 | CAMERA_CLIENT_LOCAL_PATH:= $(call my-dir) |
| 2 | include $(call all-subdir-makefiles) |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 3 | include $(CLEAR_VARS) |
| 4 | |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 5 | LOCAL_PATH := $(CAMERA_CLIENT_LOCAL_PATH) |
| 6 | |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 7 | LOCAL_SRC_FILES:= \ |
| 8 | Camera.cpp \ |
Igor Murashkin | 7efa520 | 2013-02-13 15:53:56 -0800 | [diff] [blame] | 9 | CameraMetadata.cpp \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 10 | CameraParameters.cpp \ |
Igor Murashkin | 0370be9 | 2014-03-18 18:15:23 -0700 | [diff] [blame^] | 11 | CameraParameters2.cpp \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 12 | ICamera.cpp \ |
| 13 | ICameraClient.cpp \ |
Wu-cheng Li | 4ca2c7c | 2011-06-01 17:22:24 +0800 | [diff] [blame] | 14 | ICameraService.cpp \ |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 15 | ICameraServiceListener.cpp \ |
Wu-cheng Li | 4ca2c7c | 2011-06-01 17:22:24 +0800 | [diff] [blame] | 16 | ICameraRecordingProxy.cpp \ |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 17 | ICameraRecordingProxyListener.cpp \ |
| 18 | IProCameraUser.cpp \ |
| 19 | IProCameraCallbacks.cpp \ |
Eino-Ville Talvala | 7b82efe | 2013-07-25 17:12:35 -0700 | [diff] [blame] | 20 | camera2/ICameraDeviceUser.cpp \ |
| 21 | camera2/ICameraDeviceCallbacks.cpp \ |
| 22 | camera2/CaptureRequest.cpp \ |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 23 | ProCamera.cpp \ |
Igor Murashkin | c073ba5 | 2013-02-26 14:32:34 -0800 | [diff] [blame] | 24 | CameraBase.cpp \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 25 | |
| 26 | LOCAL_SHARED_LIBRARIES := \ |
| 27 | libcutils \ |
| 28 | libutils \ |
Ying Wang | da0dc0a | 2013-04-09 21:53:49 -0700 | [diff] [blame] | 29 | liblog \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 30 | libbinder \ |
| 31 | libhardware \ |
Jamie Gennis | bfa33aa | 2010-12-20 11:51:31 -0800 | [diff] [blame] | 32 | libui \ |
Igor Murashkin | 7efa520 | 2013-02-13 15:53:56 -0800 | [diff] [blame] | 33 | libgui \ |
| 34 | libcamera_metadata \ |
| 35 | |
| 36 | LOCAL_C_INCLUDES += \ |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 37 | system/media/camera/include \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 38 | |
| 39 | LOCAL_MODULE:= libcamera_client |
| 40 | |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 41 | include $(BUILD_SHARED_LIBRARY) |