blob: c3f51775cb95d10a4034cce0705de9d0ca205ca0 [file] [log] [blame]
Jeff Sharkeyc493cf92017-10-23 10:39:50 -06001// Unit test for AuthTokenTable
Janis Danisevskis8f737ad2017-11-21 12:30:15 -08002
Jeff Sharkeyc493cf92017-10-23 10:39:50 -06003cc_test {
4 cflags: [
5 "-Wall",
6 "-Werror",
7 "-Wextra",
Shawn Willdenbb22a6c2017-12-06 19:35:28 -07008 "-O0",
Jeff Sharkeyc493cf92017-10-23 10:39:50 -06009 ],
Janis Danisevskis9a390a72017-11-29 12:02:07 -080010 srcs: [
11 "auth_token_table_test.cpp",
12 "auth_token_formatting_test.cpp",
Janis Danisevskis064ce852018-03-12 16:49:16 -070013 "confirmationui_rate_limiting_test.cpp",
Janis Danisevskis9a390a72017-11-29 12:02:07 -080014 "gtest_main.cpp",
15 ],
Jeff Sharkeyc493cf92017-10-23 10:39:50 -060016 name: "keystore_unit_tests",
17 tags: ["test"],
18 static_libs: [
Janis Danisevskis064ce852018-03-12 16:49:16 -070019 "android.hardware.confirmationui@1.0",
Shawn Willdenbb22a6c2017-12-06 19:35:28 -070020 "libbase",
Jeff Sharkeyc493cf92017-10-23 10:39:50 -060021 "libgtest_main",
Shawn Willdenbb22a6c2017-12-06 19:35:28 -070022 "libhidlbase",
23 "libkeymaster4support",
Jeff Sharkeyc493cf92017-10-23 10:39:50 -060024 "libkeystore_test",
25 "liblog",
26 ],
27 shared_libs: ["libkeymaster_messages"],
Vishwath Mohanab65cd02018-01-05 13:35:03 -080028 sanitize: {
29 cfi: false,
30 }
Jeff Sharkeyc493cf92017-10-23 10:39:50 -060031}