Yin-Chia Yeh | 4da7c6c | 2020-01-16 17:06:36 -0800 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2020 The Android Open Source Project |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
| 16 | |
| 17 | cc_library_headers { |
| 18 | name: "camera.device@3.6-external-impl_headers", |
| 19 | vendor: true, |
Jason Macnak | eda6dca | 2020-04-15 15:20:59 -0700 | [diff] [blame] | 20 | export_include_dirs: ["include/ext_device_v3_6_impl"], |
Yin-Chia Yeh | 4da7c6c | 2020-01-16 17:06:36 -0800 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | cc_library_shared { |
| 24 | name: "camera.device@3.6-external-impl", |
| 25 | defaults: ["hidl_defaults"], |
| 26 | proprietary: true, |
| 27 | vendor: true, |
| 28 | srcs: [ |
| 29 | "ExternalCameraDevice.cpp", |
| 30 | "ExternalCameraDeviceSession.cpp", |
Yin-Chia Yeh | 5dab728 | 2020-01-21 10:08:12 -0800 | [diff] [blame] | 31 | "ExternalCameraOfflineSession.cpp", |
Yin-Chia Yeh | 4da7c6c | 2020-01-16 17:06:36 -0800 | [diff] [blame] | 32 | ], |
| 33 | shared_libs: [ |
| 34 | "libhidlbase", |
| 35 | "libutils", |
| 36 | "libcutils", |
| 37 | "camera.device@3.2-impl", |
| 38 | "camera.device@3.3-impl", |
| 39 | "camera.device@3.4-external-impl", |
| 40 | "camera.device@3.5-external-impl", |
| 41 | "android.hardware.camera.device@3.2", |
| 42 | "android.hardware.camera.device@3.3", |
| 43 | "android.hardware.camera.device@3.4", |
| 44 | "android.hardware.camera.device@3.5", |
| 45 | "android.hardware.camera.device@3.6", |
| 46 | "android.hardware.camera.provider@2.4", |
| 47 | "android.hardware.graphics.mapper@2.0", |
| 48 | "android.hardware.graphics.mapper@3.0", |
| 49 | "android.hardware.graphics.mapper@4.0", |
| 50 | "liblog", |
Jason Macnak | eda6dca | 2020-04-15 15:20:59 -0700 | [diff] [blame] | 51 | "libgralloctypes", |
Yin-Chia Yeh | 4da7c6c | 2020-01-16 17:06:36 -0800 | [diff] [blame] | 52 | "libhardware", |
| 53 | "libcamera_metadata", |
| 54 | "libfmq", |
| 55 | "libsync", |
| 56 | "libyuv", |
| 57 | "libjpeg", |
| 58 | "libexif", |
Jason Macnak | eda6dca | 2020-04-15 15:20:59 -0700 | [diff] [blame] | 59 | "libtinyxml2", |
Yin-Chia Yeh | 4da7c6c | 2020-01-16 17:06:36 -0800 | [diff] [blame] | 60 | ], |
| 61 | static_libs: [ |
| 62 | "android.hardware.camera.common@1.0-helper", |
| 63 | ], |
| 64 | local_include_dirs: ["include/ext_device_v3_6_impl"], |
| 65 | export_shared_lib_headers: [ |
| 66 | "libfmq", |
| 67 | ], |
| 68 | } |