blob: 09cf3a421ca85da97736ffb13caf9f3b03e7372e [file] [log] [blame]
Shuzhen Wangd3feb3d2018-08-17 13:52:40 -07001//
2// Copyright (C) 2018 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.5-impl_headers",
19 vendor: true,
20 export_include_dirs: ["include/device_v3_5_impl"]
21}
22
23cc_library_shared {
24 name: "camera.device@3.5-impl",
25 defaults: ["hidl_defaults"],
26 proprietary: true,
27 vendor: true,
28 srcs: [
29 "CameraDevice.cpp",
Yin-Chia Yeh6a6fe0f2018-09-06 15:38:34 -070030 "CameraDeviceSession.cpp",
Shuzhen Wangd3feb3d2018-08-17 13:52:40 -070031 ],
32 shared_libs: [
33 "libhidlbase",
34 "libhidltransport",
35 "libutils",
36 "libcutils",
37 "camera.device@3.2-impl",
38 "camera.device@3.3-impl",
39 "camera.device@3.4-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.provider@2.4",
45 "android.hardware.graphics.mapper@2.0",
46 "liblog",
47 "libhardware",
48 "libcamera_metadata",
49 ],
50 static_libs: [
51 "android.hardware.camera.common@1.0-helper",
52 ],
53 local_include_dirs: ["include/device_v3_5_impl"],
54}