blob: a2ddebdd24bd60215059983324a65caf75b629c1 [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",
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",
51 "libhardware",
52 "libcamera_metadata",
53 "libfmq",
54 "libsync",
55 "libyuv",
56 "libjpeg",
57 "libexif",
58 "libtinyxml2"
59 ],
60 static_libs: [
61 "android.hardware.camera.common@1.0-helper",
62 ],
63 local_include_dirs: ["include/ext_device_v3_6_impl"],
64 export_shared_lib_headers: [
65 "libfmq",
66 ],
67}