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.
27 lines
495 B
27 lines
495 B
// Build the unit tests. |
|
cc_test { |
|
name: "camera_metadata_tests", |
|
srcs: ["camera_metadata_tests.cpp"], |
|
|
|
shared_libs: [ |
|
"libutils", |
|
"libcamera_metadata", |
|
], |
|
|
|
include_dirs: ["system/media/private/camera/include"], |
|
|
|
cflags: [ |
|
"-Wall", |
|
"-Wextra", |
|
"-Werror", |
|
], |
|
|
|
multilib: { |
|
lib32: { |
|
stem: "camera_metadata_tests", |
|
}, |
|
lib64: { |
|
stem: "camera_metadata_tests64", |
|
}, |
|
}, |
|
}
|
|
|