mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 17:31:58 +00:00
Use IMapper 3.0 if available. Otherwise, fall back to IMapper 2.0. Test: Update camera VTS test passes Bug: 128013727 Change-Id: I9bb54bbc290f1b90ef593dee9796b22b0dd49671
30 lines
717 B
Plaintext
30 lines
717 B
Plaintext
cc_library_static {
|
|
name: "android.hardware.camera.common@1.0-helper",
|
|
vendor_available: true,
|
|
defaults: ["hidl_defaults"],
|
|
srcs: [
|
|
"CameraModule.cpp",
|
|
"CameraMetadata.cpp",
|
|
"CameraParameters.cpp",
|
|
"VendorTagDescriptor.cpp",
|
|
"HandleImporter.cpp",
|
|
"Exif.cpp"
|
|
],
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wextra",
|
|
"-Wall",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libhardware",
|
|
"libcamera_metadata",
|
|
"android.hardware.graphics.mapper@2.0",
|
|
"android.hardware.graphics.mapper@3.0",
|
|
"libexif",
|
|
],
|
|
include_dirs: ["system/media/private/camera/include"],
|
|
export_include_dirs : ["include"]
|
|
}
|
|
|