You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
707 B
37 lines
707 B
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", |
|
], |
|
}, |
|
}, |
|
}
|
|
|