1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "hardware_interfaces_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
10cc_library_shared {
11    name: "camera.device@3.2-impl",
12    defaults: ["hidl_defaults"],
13    proprietary: true,
14    srcs: [
15        "CameraDevice.cpp",
16        "CameraDeviceSession.cpp",
17        "convert.cpp",
18    ],
19    shared_libs: [
20        "libhidlbase",
21        "libutils",
22        "libcutils",
23        "android.hardware.camera.device@3.2",
24        "android.hardware.camera.provider@2.4",
25        "android.hardware.graphics.mapper@2.0",
26        "android.hardware.graphics.mapper@3.0",
27        "android.hardware.graphics.mapper@4.0",
28        "liblog",
29        "libgralloctypes",
30        "libhardware",
31        "libcamera_metadata",
32        "libfmq",
33    ],
34    static_libs: [
35        "android.hardware.camera.common@1.0-helper",
36    ],
37    export_include_dirs: ["."],
38    export_shared_lib_headers: [
39        "libfmq",
40    ],
41}
42