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