From bcde7a7f66985cd134eb7a01dcc51c6607c6e278 Mon Sep 17 00:00:00 2001 From: Max Bires Date: Wed, 7 Apr 2021 16:28:05 -0700 Subject: [PATCH] Setting libcppcose to host supported. This change adds the host supported flag to the libcppcose and removes some unnecessary dependencies from the blueprint file. Test: libcppcose builds Change-Id: I45bca44267a50d0d401fc1964f96363e558317ff --- security/keymint/support/Android.bp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/security/keymint/support/Android.bp b/security/keymint/support/Android.bp index fe04ede49f..4c4258b822 100644 --- a/security/keymint/support/Android.bp +++ b/security/keymint/support/Android.bp @@ -66,6 +66,7 @@ cc_library { cc_library { name: "libcppcose", vendor_available: true, + host_supported: true, srcs: [ "cppcose.cpp", ], @@ -73,13 +74,8 @@ cc_library { "include", ], shared_libs: [ - "libbinder_ndk", "libcppbor_external", "libcrypto", "liblog", ], - static_libs: [ - // TODO(swillden): Remove keymint NDK - "android.hardware.security.keymint-V1-ndk_platform", - ], }