Use libcrypto_static instead of libcrypto
Replace libcrypto with libcrypto_static, which can be protected through
visibility to ensure only modules that don't affect FIPS certification
can use it.
Bug: 141248879
Test: m checkbuild
Change-Id: I0affaa292237bdbc772d3adc36086905ed6fbe9d
diff --git a/updater/Android.mk b/updater/Android.mk
index bc766c4..6f54d89 100644
--- a/updater/Android.mk
+++ b/updater/Android.mk
@@ -44,7 +44,7 @@
libziparchive \
libz \
libbase \
- libcrypto \
+ libcrypto_static \
libcrypto_utils \
libcutils \
libutils
@@ -109,7 +109,6 @@
inc :=
LOCAL_FORCE_STATIC_EXECUTABLE := true
-LOCAL_INJECT_BSSL_HASH := true
include $(BUILD_EXECUTABLE)