blob: 341f573b7f140353084b95d46294d035a2c4586b [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",
30 ],
31 shared_libs: [
32 "libhidlbase",
33 "libhidltransport",
34 "libutils",
35 "libcutils",
36 "camera.device@3.2-impl",
37 "camera.device@3.3-impl",
38 "camera.device@3.4-impl",
39 "android.hardware.camera.device@3.2",
40 "android.hardware.camera.device@3.3",
41 "android.hardware.camera.device@3.4",
42 "android.hardware.camera.device@3.5",
43 "android.hardware.camera.provider@2.4",
44 "android.hardware.graphics.mapper@2.0",
45 "liblog",
46 "libhardware",
47 "libcamera_metadata",
48 ],
49 static_libs: [
50 "android.hardware.camera.common@1.0-helper",
51 ],
52 local_include_dirs: ["include/device_v3_5_impl"],
53}