mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 02:42:35 +00:00
(Includes bpfmt changes from repo hook) Bug: b/146515640 Test: cts -m CtsCameraTestCases Change-Id: Ibd882db1883e0976c2baf95257e51c29de6e6853
31 lines
792 B
Plaintext
31 lines
792 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",
|
|
"libgralloctypes",
|
|
"libhardware",
|
|
"libcamera_metadata",
|
|
"android.hardware.graphics.mapper@2.0",
|
|
"android.hardware.graphics.mapper@3.0",
|
|
"android.hardware.graphics.mapper@4.0",
|
|
"libexif",
|
|
],
|
|
include_dirs: ["system/media/private/camera/include"],
|
|
export_include_dirs: ["include"],
|
|
}
|