mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 10:05:19 +00:00
A fully-ported version of the ExifUtils class from ChromeOS (see [chromeos]/src/platform/arc-camera/common/exif_utils.cc) * Made into an interface to remove libexif dependencies from header file * Rewrote ChromeOS dependencies * Minor fixes Change-Id: I2e93fa3e08e6b82b26641cc736eeb1c61b04a2c0
29 lines
669 B
Plaintext
29 lines
669 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",
|
|
"libexif",
|
|
],
|
|
include_dirs: ["system/media/private/camera/include"],
|
|
export_include_dirs : ["include"]
|
|
}
|
|
|