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