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 \ |
| 11 | ICamera.cpp \ |
| 12 | ICameraClient.cpp \ |
Wu-cheng Li | 4ca2c7c | 2011-06-01 17:22:24 +0800 | [diff] [blame] | 13 | ICameraService.cpp \ |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 14 | ICameraServiceListener.cpp \ |
Wu-cheng Li | 4ca2c7c | 2011-06-01 17:22:24 +0800 | [diff] [blame] | 15 | ICameraRecordingProxy.cpp \ |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 16 | ICameraRecordingProxyListener.cpp \ |
| 17 | IProCameraUser.cpp \ |
| 18 | IProCameraCallbacks.cpp \ |
| 19 | ProCamera.cpp \ |
Igor Murashkin | c073ba5 | 2013-02-26 14:32:34 -0800 | [diff] [blame] | 20 | CameraBase.cpp \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 21 | |
| 22 | LOCAL_SHARED_LIBRARIES := \ |
| 23 | libcutils \ |
| 24 | libutils \ |
Ying Wang | da0dc0a | 2013-04-09 21:53:49 -0700 | [diff] [blame^] | 25 | liblog \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 26 | libbinder \ |
| 27 | libhardware \ |
Jamie Gennis | bfa33aa | 2010-12-20 11:51:31 -0800 | [diff] [blame] | 28 | libui \ |
Igor Murashkin | 7efa520 | 2013-02-13 15:53:56 -0800 | [diff] [blame] | 29 | libgui \ |
| 30 | libcamera_metadata \ |
| 31 | |
| 32 | LOCAL_C_INCLUDES += \ |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 33 | system/media/camera/include \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 34 | |
| 35 | LOCAL_MODULE:= libcamera_client |
| 36 | |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 37 | include $(BUILD_SHARED_LIBRARY) |