37 lines
707 B
Text
37 lines
707 B
Text
subdirs = ["tests"]
|
|
|
|
cc_library_shared {
|
|
name: "libcamera_metadata",
|
|
vendor_available: true,
|
|
vndk: {
|
|
enabled: true,
|
|
},
|
|
srcs: ["src/camera_metadata.c"],
|
|
|
|
include_dirs: ["system/media/private/camera/include"],
|
|
local_include_dirs: ["include"],
|
|
export_include_dirs: ["include"],
|
|
|
|
shared_libs: [
|
|
"libcutils",
|
|
"liblog",
|
|
],
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Werror",
|
|
"-fvisibility=hidden",
|
|
"-std=c11",
|
|
],
|
|
|
|
product_variables: {
|
|
debuggable: {
|
|
// Enable assert()
|
|
cflags: [
|
|
"-UNDEBUG",
|
|
"-DLOG_NDEBUG=1",
|
|
],
|
|
},
|
|
},
|
|
}
|