From 45eb940d74c08a66d9611c8a4fae97644c86dba6 Mon Sep 17 00:00:00 2001 From: David Zeuthen Date: Fri, 12 Jun 2020 14:50:21 -0400 Subject: [PATCH] Identity: Statically link VTS test binary. 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 Merged-In: Ida85ca8835d0243c47f451ccdfa0d11d29ec1bdb Change-Id: If11fe0812bf367400f5c8e894e636937ee191d3f --- identity/aidl/vts/Android.bp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/identity/aidl/vts/Android.bp b/identity/aidl/vts/Android.bp index 58473dc2a2..cd6f9b0143 100644 --- a/identity/aidl/vts/Android.bp +++ b/identity/aidl/vts/Android.bp @@ -17,13 +17,13 @@ cc_test { "android.hardware.keymaster@4.0", "libbinder", "libcrypto", - "libkeymaster_portable", - "libsoft_attestation_cert", - "libpuresoftkeymasterdevice", "android.hardware.keymaster-ndk_platform", ], static_libs: [ "libcppbor", + "libkeymaster_portable", + "libsoft_attestation_cert", + "libpuresoftkeymasterdevice", "android.hardware.identity-support-lib", "android.hardware.identity-cpp", "android.hardware.keymaster-cpp",