diff options
author | Jerry Zhang <zhangjerry@google.com> | 2018-07-17 23:20:55 +0200 |
---|---|---|
committer | Hridya Valsaraju <hridya@google.com> | 2018-07-20 19:54:03 +0200 |
commit | c936a6961940a15f7f95befcf35425bad8fa4f7c (patch) | |
tree | 1dedf7b8e1ee1c996fd102e04fb825e2c01f49aa /otautil | |
parent | Merge "Fix the arguments passed to getopt_long(3)." (diff) | |
download | android_bootable_recovery-c936a6961940a15f7f95befcf35425bad8fa4f7c.tar android_bootable_recovery-c936a6961940a15f7f95befcf35425bad8fa4f7c.tar.gz android_bootable_recovery-c936a6961940a15f7f95befcf35425bad8fa4f7c.tar.bz2 android_bootable_recovery-c936a6961940a15f7f95befcf35425bad8fa4f7c.tar.lz android_bootable_recovery-c936a6961940a15f7f95befcf35425bad8fa4f7c.tar.xz android_bootable_recovery-c936a6961940a15f7f95befcf35425bad8fa4f7c.tar.zst android_bootable_recovery-c936a6961940a15f7f95befcf35425bad8fa4f7c.zip |
Diffstat (limited to 'otautil')
-rw-r--r-- | otautil/Android.bp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/otautil/Android.bp b/otautil/Android.bp index b058f7b35..16af7e781 100644 --- a/otautil/Android.bp +++ b/otautil/Android.bp @@ -16,6 +16,7 @@ cc_library_static { name: "libotautil", host_supported: true, + recovery_available: true, // Minimal set of files to support host build. srcs: [ @@ -23,7 +24,7 @@ cc_library_static { "rangeset.cpp", ], - static_libs: [ + shared_libs: [ "libbase", ], @@ -46,7 +47,7 @@ cc_library_static { "thermalutil.cpp", ], - static_libs: [ + shared_libs: [ "libselinux", "libcutils", ], |