d9925d5294
Change-Id: I497c9c97663bdd159f2b29fe0818818d27342456
71 lines
1.5 KiB
Text
71 lines
1.5 KiB
Text
// 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: [
|
|
"android.hardware.confirmationui@1.0",
|
|
"libbase",
|
|
"libcrypto_static",
|
|
"libcutils",
|
|
"libgtest_main",
|
|
"libhidlbase",
|
|
"libkeymaster4support",
|
|
"libkeymaster4_1support",
|
|
"libkeystore_test",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
shared_libs: [
|
|
"libbinder",
|
|
"libkeymaster_messages",
|
|
"libkeystore-attestation-application-id",
|
|
"libvndksupport",
|
|
],
|
|
sanitize: {
|
|
cfi: false,
|
|
}
|
|
}
|
|
|
|
cc_test {
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wextra",
|
|
"-O0",
|
|
],
|
|
srcs: [
|
|
"confirmationui_invocation_test.cpp",
|
|
"gtest_main.cpp",
|
|
],
|
|
name: "confirmationui_invocation_test",
|
|
static_libs: [
|
|
"android.hardware.confirmationui@1.0",
|
|
"libbase",
|
|
"libgtest_main",
|
|
"libutils",
|
|
"liblog",
|
|
],
|
|
shared_libs: [
|
|
"libbinder",
|
|
"libkeystore_aidl", // for IKeyStoreService.asInterface()
|
|
"libkeystore_binder",
|
|
"libkeystore_parcelables",
|
|
],
|
|
sanitize: {
|
|
cfi: false,
|
|
}
|
|
}
|