mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 21:37:44 +00:00
No longer needed. This also enable us to switch to defaultPassthroughImplementation. Also rename camera device wrapper library to signal it's not a top level HAL entry. Test: marlin camera app with passthrough/binderzied mode Bug: 34817742 Change-Id: I78ad5afbf78b2679be3efe0e82f430958ef6bfea
23 lines
568 B
Plaintext
23 lines
568 B
Plaintext
cc_library_shared {
|
|
name: "camera.device@3.2-impl",
|
|
srcs: ["CameraDevice.cpp",
|
|
"CameraDeviceSession.cpp",
|
|
"convert.cpp"],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"libutils",
|
|
"libcutils",
|
|
"android.hardware.camera.device@3.2",
|
|
"android.hardware.camera.provider@2.4",
|
|
"liblog",
|
|
"libhardware",
|
|
"libcamera_metadata"
|
|
],
|
|
static_libs: [
|
|
"android.hardware.camera.common@1.0-helper"
|
|
],
|
|
export_include_dirs: ["."]
|
|
}
|