blob: fe0b3b447c30cfd077d0e47f87da1cc2def77f53 [file] [log] [blame]
subdirs = ["tests"]
cc_library_shared {
name: "libcamera_metadata",
vendor_available: true,
vndk: {
enabled: true,
},
double_loadable: true,
srcs: ["src/camera_metadata.c"],
include_dirs: ["system/media/private/camera/include"],
local_include_dirs: ["include"],
export_include_dirs: ["include"],
export_shared_lib_headers: ["libcutils"],
shared_libs: [
"libcutils",
"liblog",
],
cflags: [
"-Wall",
"-Wextra",
"-Werror",
"-fvisibility=hidden",
"-std=c11",
],
product_variables: {
eng: {
// Enable assert()
cflags: [
"-UNDEBUG",
"-DLOG_NDEBUG=1",
],
},
},
}