mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-03 03:14:17 +00:00
The VTS test was dynamically linking some libraries not normally present on an Android system. Statically link these libraries instead. Bug: 158150767 Test: atest VtsHalIdentityTargetTest Change-Id: Ib93620c36b0ff7f5c9f239ff8861a11196605881
36 lines
956 B
Plaintext
36 lines
956 B
Plaintext
cc_test {
|
|
name: "VtsHalIdentityTargetTest",
|
|
defaults: [
|
|
"VtsHalTargetTestDefaults",
|
|
"use_libaidlvintf_gtest_helper_static",
|
|
],
|
|
srcs: [
|
|
"VtsHalIdentityEndToEndTest.cpp",
|
|
"VtsIWritableIdentityCredentialTests.cpp",
|
|
"VtsIdentityTestUtils.cpp",
|
|
"VtsAttestationTests.cpp",
|
|
"VtsAttestationParserSupport.cpp",
|
|
"UserAuthTests.cpp",
|
|
"ReaderAuthTests.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libbinder",
|
|
"libcrypto",
|
|
],
|
|
static_libs: [
|
|
"libcppbor",
|
|
"libkeymaster_portable",
|
|
"libsoft_attestation_cert",
|
|
"libpuresoftkeymasterdevice",
|
|
"android.hardware.keymaster@4.0",
|
|
"android.hardware.identity-support-lib",
|
|
"android.hardware.identity-cpp",
|
|
"android.hardware.keymaster-cpp",
|
|
"android.hardware.keymaster-ndk_platform",
|
|
],
|
|
test_suites: [
|
|
"general-tests",
|
|
"vts",
|
|
],
|
|
}
|