diff options
| -rw-r--r-- | dex2oat/Android.bp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/dex2oat/Android.bp b/dex2oat/Android.bp index d3ba191f14..cb59bc2359 100644 --- a/dex2oat/Android.bp +++ b/dex2oat/Android.bp @@ -80,22 +80,18 @@ art_cc_defaults { generated_sources: ["art_dex2oat_operator_srcs"], shared_libs: [ "libbase", + + // For SHA-1 checksumming of build ID + "libcrypto", ], export_include_dirs: ["."], - - // For SHA-1 checksumming of build ID - static: { - whole_static_libs: ["libcrypto"], - }, - shared: { - shared_libs: ["libcrypto"], - }, } cc_defaults { name: "libart-dex2oat_static_base_defaults", static_libs: [ "libbase", + "libcrypto", "libz", ], } @@ -245,6 +241,7 @@ art_cc_binary { "libart-compiler", "libart-dexlayout", "libart", + "libcrypto", "libdexfile", "libartbase", "libartpalette", @@ -291,6 +288,7 @@ art_cc_binary { "libartd-compiler", "libartd-dexlayout", "libartd", + "libcrypto", "libdexfiled", "libartbased", "libartpalette", @@ -465,6 +463,7 @@ art_cc_test { "libartd-dexlayout", "libartpalette", "libbase", + "libcrypto", "libprofiled", "libsigchain", "libziparchive", |