blob: a0ab1673668d152a2d37a83ad9c3d9e4193bc92b [file] [log] [blame]
Emilian Peeve18057b2017-11-13 16:03:44 +00001//
2// Copyright (C) 2017 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.4-impl_headers",
19 vendor: true,
20 export_include_dirs: ["include/device_v3_4_impl"],
21}
22
23cc_library_shared {
24 name: "camera.device@3.4-impl",
25 defaults: ["hidl_defaults"],
26 proprietary: true,
27 vendor: true,
28 srcs: [
29 "CameraDevice.cpp",
30 "CameraDeviceSession.cpp",
Shuzhen Wang82e36b32017-11-28 17:00:43 -080031 "convert.cpp",
Emilian Peeve18057b2017-11-13 16:03:44 +000032 ],
33 shared_libs: [
34 "libhidlbase",
35 "libhidltransport",
36 "libutils",
37 "libcutils",
38 "camera.device@3.2-impl",
39 "camera.device@3.3-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.provider@2.4",
44 "android.hardware.graphics.mapper@2.0",
45 "liblog",
46 "libhardware",
47 "libcamera_metadata",
48 "libfmq",
49 ],
50 static_libs: [
51 "android.hardware.camera.common@1.0-helper",
52 ],
53 local_include_dirs: ["include/device_v3_4_impl"],
54 export_shared_lib_headers: [
55 "libfmq",
56 ],
57}