Files
hardware_interfaces/camera/common/1.0/default/Android.bp
Steven Moreland 48c52249e4 hidl_default to all targets.
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
2017-03-08 19:31:53 -08:00

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"]
}