blob: ce51185193236dc5ff649a76fc34ac3154b81241 [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,
20 export_include_dirs: ["include/ext_device_v3_6_impl"]
21}
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",
31 ],
32 shared_libs: [
33 "libhidlbase",
34 "libutils",
35 "libcutils",
36 "camera.device@3.2-impl",
37 "camera.device@3.3-impl",
38 "camera.device@3.4-external-impl",
39 "camera.device@3.5-external-impl",
40 "android.hardware.camera.device@3.2",
41 "android.hardware.camera.device@3.3",
42 "android.hardware.camera.device@3.4",
43 "android.hardware.camera.device@3.5",
44 "android.hardware.camera.device@3.6",
45 "android.hardware.camera.provider@2.4",
46 "android.hardware.graphics.mapper@2.0",
47 "android.hardware.graphics.mapper@3.0",
48 "android.hardware.graphics.mapper@4.0",
49 "liblog",
50 "libhardware",
51 "libcamera_metadata",
52 "libfmq",
53 "libsync",
54 "libyuv",
55 "libjpeg",
56 "libexif",
57 "libtinyxml2"
58 ],
59 static_libs: [
60 "android.hardware.camera.common@1.0-helper",
61 ],
62 local_include_dirs: ["include/ext_device_v3_6_impl"],
63 export_shared_lib_headers: [
64 "libfmq",
65 ],
66}