Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame^] | 1 | # Copyright 2010 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 15 | CAMERA_CLIENT_LOCAL_PATH:= $(call my-dir) |
| 16 | include $(call all-subdir-makefiles) |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 17 | include $(CLEAR_VARS) |
| 18 | |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 19 | LOCAL_PATH := $(CAMERA_CLIENT_LOCAL_PATH) |
| 20 | |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 21 | LOCAL_SRC_FILES:= \ |
| 22 | Camera.cpp \ |
Igor Murashkin | 7efa520 | 2013-02-13 15:53:56 -0800 | [diff] [blame] | 23 | CameraMetadata.cpp \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 24 | CameraParameters.cpp \ |
| 25 | ICamera.cpp \ |
| 26 | ICameraClient.cpp \ |
Wu-cheng Li | 4ca2c7c | 2011-06-01 17:22:24 +0800 | [diff] [blame] | 27 | ICameraService.cpp \ |
Igor Murashkin | bfc9915 | 2013-02-27 12:55:20 -0800 | [diff] [blame] | 28 | ICameraServiceListener.cpp \ |
Wu-cheng Li | 4ca2c7c | 2011-06-01 17:22:24 +0800 | [diff] [blame] | 29 | ICameraRecordingProxy.cpp \ |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 30 | ICameraRecordingProxyListener.cpp \ |
| 31 | IProCameraUser.cpp \ |
| 32 | IProCameraCallbacks.cpp \ |
Eino-Ville Talvala | 7b82efe | 2013-07-25 17:12:35 -0700 | [diff] [blame] | 33 | camera2/ICameraDeviceUser.cpp \ |
| 34 | camera2/ICameraDeviceCallbacks.cpp \ |
| 35 | camera2/CaptureRequest.cpp \ |
Igor Murashkin | 634a515 | 2013-02-20 17:15:11 -0800 | [diff] [blame] | 36 | ProCamera.cpp \ |
Igor Murashkin | c073ba5 | 2013-02-26 14:32:34 -0800 | [diff] [blame] | 37 | CameraBase.cpp \ |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame^] | 38 | VendorTagDescriptor.cpp |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 39 | |
| 40 | LOCAL_SHARED_LIBRARIES := \ |
| 41 | libcutils \ |
| 42 | libutils \ |
Ying Wang | da0dc0a | 2013-04-09 21:53:49 -0700 | [diff] [blame] | 43 | liblog \ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 44 | libbinder \ |
| 45 | libhardware \ |
Jamie Gennis | bfa33aa | 2010-12-20 11:51:31 -0800 | [diff] [blame] | 46 | libui \ |
Igor Murashkin | 7efa520 | 2013-02-13 15:53:56 -0800 | [diff] [blame] | 47 | libgui \ |
| 48 | libcamera_metadata \ |
| 49 | |
| 50 | LOCAL_C_INCLUDES += \ |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 51 | system/media/camera/include \ |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame^] | 52 | system/media/private/camera/include |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 53 | |
| 54 | LOCAL_MODULE:= libcamera_client |
| 55 | |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 56 | include $(BUILD_SHARED_LIBRARY) |