123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // Unit test for AuthTokenTable
- cc_test {
- cflags: [
- "-Wall",
- "-Werror",
- "-Wextra",
- "-O0",
- ],
- srcs: [
- "aaid_truncation_test.cpp",
- "auth_token_table_test.cpp",
- "auth_token_formatting_test.cpp",
- "blob_test.cpp",
- "confirmationui_rate_limiting_test.cpp",
- "gtest_main.cpp",
- ],
- name: "keystore_unit_tests",
- static_libs: [
- "[email protected]",
- "libbase",
- "libcrypto",
- "libcutils",
- "libgtest_main",
- "libhidlbase",
- "libkeymaster4support",
- "libkeystore_test",
- "liblog",
- "libutils",
- "libvndksupport",
- ],
- shared_libs: [
- "libbinder",
- "libkeymaster_messages",
- ],
- sanitize: {
- cfi: false,
- }
- }
- cc_test {
- cflags: [
- "-Wall",
- "-Werror",
- "-Wextra",
- "-O0",
- ],
- srcs: [
- "confirmationui_invocation_test.cpp",
- "gtest_main.cpp",
- ],
- name: "confirmationui_invocation_test",
- static_libs: [
- "[email protected]",
- "libbase",
- "libgtest_main",
- "libutils",
- "liblog",
- ],
- shared_libs: [
- "libbinder",
- "libkeystore_aidl", // for IKeyStoreService.asInterface()
- "libkeystore_binder",
- "libkeystore_parcelables",
- ],
- sanitize: {
- cfi: false,
- }
- }
|