• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2019 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_shared {
18    name: "libgooglecamerahalutils",
19    defaults: ["google_camera_hal_defaults"],
20    owner: "google",
21    vendor_available: true,
22    srcs: [
23        "camera_id_manager.cc",
24        "gralloc_buffer_allocator.cc",
25        "hal_camera_metadata.cc",
26        "pipeline_request_id_manager.cc",
27        "result_dispatcher.cc",
28        "stream_buffer_cache_manager.cc",
29        "utils.cc",
30        "vendor_tag_utils.cc",
31        "zoom_ratio_mapper.cc",
32        "zsl_buffer_manager.cc",
33    ],
34    shared_libs: [
35        "libcamera_metadata",
36        "libcutils",
37        "libhardware",
38        "liblog",
39        "libutils",
40        "libsync",
41    ],
42    export_include_dirs: ["."],
43    include_dirs: [
44        "system/media/private/camera/include"
45    ],
46}
47