summaryrefslogtreecommitdiffstats
path: root/bootloader_message
diff options
context:
space:
mode:
authorJerry Zhang <zhangjerry@google.com>2018-07-17 23:20:55 +0200
committerHridya Valsaraju <hridya@google.com>2018-07-20 19:54:03 +0200
commitc936a6961940a15f7f95befcf35425bad8fa4f7c (patch)
tree1dedf7b8e1ee1c996fd102e04fb825e2c01f49aa /bootloader_message
parentMerge "Fix the arguments passed to getopt_long(3)." (diff)
downloadandroid_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 'bootloader_message')
-rw-r--r--bootloader_message/Android.bp5
1 files changed, 3 insertions, 2 deletions
diff --git a/bootloader_message/Android.bp b/bootloader_message/Android.bp
index ab23733cd..6155daad4 100644
--- a/bootloader_message/Android.bp
+++ b/bootloader_message/Android.bp
@@ -14,7 +14,7 @@
// limitations under the License.
//
-cc_library_static {
+cc_library {
name: "libbootloader_message",
recovery_available: true,
srcs: ["bootloader_message.cpp"],
@@ -22,9 +22,10 @@ cc_library_static {
"-Wall",
"-Werror",
],
- static_libs: [
+ shared_libs: [
"libbase",
"libfs_mgr",
+ "liblog",
],
export_include_dirs: ["include"],
}