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.
47 lines
865 B
47 lines
865 B
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_test {
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wextra",
|
|
"-O0",
|
|
],
|
|
srcs: [
|
|
"teeui_test.cpp",
|
|
"gtest_main.cpp",
|
|
],
|
|
name: "teeui_unit_tests",
|
|
static_libs: [
|
|
"libteeui",
|
|
"libft2.nodep",
|
|
],
|
|
host_supported: true,
|
|
}
|
|
|
|
|
|
cc_library_host_shared {
|
|
name: "libteeui_localization_rendering_test",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wextra",
|
|
"-O0",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
srcs: [
|
|
"teeui_locale_test.cpp",
|
|
"teeui_device_config.cpp",
|
|
"teeui_draw_label_text_test.cpp",
|
|
],
|
|
static_libs: [
|
|
"libteeui_example_layout",
|
|
"libteeui",
|
|
"libft2.nodep",
|
|
"libteeui_localization",
|
|
"libgtest",
|
|
],
|
|
}
|