1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Unit test for AuthTokenTable
cc_test {
cflags: [
"-Wall",
"-Werror",
"-Wextra",
"-O0",
],
srcs: [
"auth_token_table_test.cpp",
"auth_token_formatting_test.cpp",
"confirmationui_rate_limiting_test.cpp",
"gtest_main.cpp",
],
name: "keystore_unit_tests",
tags: ["test"],
static_libs: [
"android.hardware.confirmationui@1.0",
"libbase",
"libgtest_main",
"libhidlbase",
"libkeymaster4support",
"libkeystore_test",
"liblog",
],
shared_libs: ["libkeymaster_messages"],
sanitize: {
cfi: false,
}
}
|