diff options
Diffstat (limited to 'updater')
-rw-r--r-- | updater/Android.bp | 5 | ||||
-rw-r--r-- | updater/Android.mk | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/updater/Android.bp b/updater/Android.bp index 063366e5e..872ef86db 100644 --- a/updater/Android.bp +++ b/updater/Android.bp @@ -41,11 +41,14 @@ cc_defaults { "libziparchive", "libz", "libbase", - "libcrypto", "libcrypto_utils", "libcutils", "libutils", ], + + shared_libs: [ + "libcrypto", + ], } cc_defaults { diff --git a/updater/Android.mk b/updater/Android.mk index 93525c12a..bc766c453 100644 --- a/updater/Android.mk +++ b/updater/Android.mk @@ -109,6 +109,7 @@ LOCAL_GENERATED_SOURCES := $(inc) inc := LOCAL_FORCE_STATIC_EXECUTABLE := true +LOCAL_INJECT_BSSL_HASH := true include $(BUILD_EXECUTABLE) |