blob: 2871e2a1addf1d065093d7e3b2e7aae8ecc0380b [file] [log] [blame]
Yin-Chia Yeh4da7c6c2020-01-16 17:06:36 -08001//
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
17cc_library_headers {
18 name: "camera.device@3.6-external-impl_headers",
19 vendor: true,
Jason Macnakeda6dca2020-04-15 15:20:59 -070020 export_include_dirs: ["include/ext_device_v3_6_impl"],
Yin-Chia Yeh4da7c6c2020-01-16 17:06:36 -080021}
22
23cc_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 Yeh5dab7282020-01-21 10:08:12 -080031 "ExternalCameraOfflineSession.cpp",
Yin-Chia Yeh4da7c6c2020-01-16 17:06:36 -080032 ],
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 Macnakeda6dca2020-04-15 15:20:59 -070051 "libgralloctypes",
Yin-Chia Yeh4da7c6c2020-01-16 17:06:36 -080052 "libhardware",
53 "libcamera_metadata",
54 "libfmq",
55 "libsync",
56 "libyuv",
57 "libjpeg",
58 "libexif",
Jason Macnakeda6dca2020-04-15 15:20:59 -070059 "libtinyxml2",
Yin-Chia Yeh4da7c6c2020-01-16 17:06:36 -080060 ],
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}