diff options
author | Hridya Valsaraju <hridya@google.com> | 2018-07-23 19:43:59 +0200 |
---|---|---|
committer | Hridya Valsaraju <hridya@google.com> | 2018-07-23 19:49:14 +0200 |
commit | b6b129b258a4fe5790beaa055bb631a37b89637b (patch) | |
tree | 5bf35c6deefe6bcaeca33b371719f570a0b1147d /otautil | |
parent | Make recovery libraries shared / recovery_available (diff) | |
download | android_bootable_recovery-b6b129b258a4fe5790beaa055bb631a37b89637b.tar android_bootable_recovery-b6b129b258a4fe5790beaa055bb631a37b89637b.tar.gz android_bootable_recovery-b6b129b258a4fe5790beaa055bb631a37b89637b.tar.bz2 android_bootable_recovery-b6b129b258a4fe5790beaa055bb631a37b89637b.tar.lz android_bootable_recovery-b6b129b258a4fe5790beaa055bb631a37b89637b.tar.xz android_bootable_recovery-b6b129b258a4fe5790beaa055bb631a37b89637b.tar.zst android_bootable_recovery-b6b129b258a4fe5790beaa055bb631a37b89637b.zip |
Diffstat (limited to 'otautil')
-rw-r--r-- | otautil/Android.bp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/otautil/Android.bp b/otautil/Android.bp index 16af7e781..b058f7b35 100644 --- a/otautil/Android.bp +++ b/otautil/Android.bp @@ -16,7 +16,6 @@ cc_library_static { name: "libotautil", host_supported: true, - recovery_available: true, // Minimal set of files to support host build. srcs: [ @@ -24,7 +23,7 @@ cc_library_static { "rangeset.cpp", ], - shared_libs: [ + static_libs: [ "libbase", ], @@ -47,7 +46,7 @@ cc_library_static { "thermalutil.cpp", ], - shared_libs: [ + static_libs: [ "libselinux", "libcutils", ], |