AtomicOs

Android

Apr 23rd, 2021 (edited)
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.09 KB | None | 0 0
  1. package {
  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/google/camera:hardware_google_camera_license"
  5.     // to get the below license kinds:
  6.     //   SPDX-license-identifier-Apache-2.0
  7.     default_applicable_licenses: [
  8.         "//hardware/google/camera:hardware_google_camera_license",
  9.     ],
  10. }
  11. cc_library_shared {
  12.     name: "libgooglecamerahwl_impl",
  13.     owner: "google",
  14.     proprietary: true,
  15.     srcs: [
  16.         "EmulatedCameraProviderHWLImpl.cpp",
  17.         "EmulatedCameraDeviceHWLImpl.cpp",
  18.         "EmulatedCameraDeviceSessionHWLImpl.cpp",
  19.         "EmulatedLogicalRequestState.cpp",
  20.         "EmulatedRequestProcessor.cpp",
  21.         "EmulatedRequestState.cpp",
  22.         "EmulatedScene.cpp",
  23.         "EmulatedSensor.cpp",
  24.         "EmulatedTorchState.cpp",
  25.         "JpegCompressor.cpp",
  26.         "utils/ExifUtils.cpp",
  27.         "utils/HWLUtils.cpp",
  28.         "utils/StreamConfigurationMap.cpp",
  29.     ],
  30.     cflags: [
  31.         "-Werror",
  32.         "-Wextra",
  33.         "-Wall",
  34.     ],
  35.     shared_libs: [
  36.         "android.frameworks.sensorservice@1.0",
  37.         "android.hardware.graphics.mapper@2.0",
  38.         "android.hardware.graphics.mapper@3.0",
  39.         "android.hardware.graphics.mapper@4.0",
  40.         "android.hardware.camera.provider@2.4",
  41.         "android.hardware.camera.provider@2.5",
  42.         "android.hardware.camera.provider@2.6",
  43.         "android.hardware.sensors@1.0",
  44.         "android.hidl.allocator@1.0",
  45.         "libbase",
  46.         "libcamera_metadata",
  47.         "libcutils",
  48.         "libexif",
  49.         "libgralloctypes",
  50.         "libhardware",
  51.         "libhidlbase",
  52.         "libgooglecamerahalutils",
  53.         "libjpeg",
  54.         "libjsoncpp",
  55.         "liblog",
  56.         "libsync",
  57.         "libutils",
  58.         "libyuv",
  59.     ],
  60.     static_libs: [
  61.         "android.hardware.camera.common@1.0-helper",
  62.     ],
  63.     include_dirs: [
  64.         "system/media/private/camera/include",
  65.     ],
  66.     header_libs: [
  67.         "libgooglecamerahal_headers",
  68.     ],
  69. }
  70.  
Add Comment
Please, Sign In to add comment