mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-03 08:54:55 +00:00
find hardware/interfaces -type f -not -path "*/.git/*" \
-exec sed -i -e '/cc_[A-Za-z_]\+/ { N; s/$/\n defaults:
\["hidl_defaults"\],/ }' {} \;
./hardware/interfaces/update-makefiles.sh
Test: pass
Bug: 35840847
Change-Id: If10c464d2f000b85c8d698fe11a4f3fc4cfad282
22 lines
511 B
Plaintext
22 lines
511 B
Plaintext
cc_library_static {
|
|
name: "android.hardware.camera.common@1.0-helper",
|
|
defaults: ["hidl_defaults"],
|
|
srcs: [
|
|
"CameraModule.cpp",
|
|
"CameraMetadata.cpp",
|
|
"VendorTagDescriptor.cpp",
|
|
"HandleImporter.cpp"],
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wextra",
|
|
"-Wall",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libhardware",
|
|
"libcamera_metadata"],
|
|
include_dirs: ["system/media/private/camera/include"],
|
|
export_include_dirs : ["include"]
|
|
}
|
|
|