diff options
author | Mitch Phillips <mitchp@google.com> | 2020-07-01 09:43:16 -0700 |
---|---|---|
committer | Mitch Phillips <mitchp@google.com> | 2020-07-06 18:24:26 +0000 |
commit | 5472d6f75d3e68e37e801d5c75e756ac866914a2 (patch) | |
tree | 06d679b2a298c327a177d1a61fdf66d35e4cf883 /libnativebridge | |
parent | 33247ee958f603bece4223e5e0937391c3c52672 (diff) |
Add liblog to libnative(bridge|loader)_lazy.
These DSO's use LOG_IF, which requires liblog. Compiling them with
asserts shouldn't fail to build.
Bug: 160324350
Test: Build with asserts enabled (`-UNDEBUG`).
Change-Id: Id72ef2cef0e60072bd762b63feae3db114ee7a26
Diffstat (limited to 'libnativebridge')
-rw-r--r-- | libnativebridge/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libnativebridge/Android.bp b/libnativebridge/Android.bp index c0f4791621..e6e5fe150b 100644 --- a/libnativebridge/Android.bp +++ b/libnativebridge/Android.bp @@ -80,6 +80,7 @@ cc_library { host_supported: false, srcs: ["native_bridge_lazy.cc"], required: ["libnativebridge"], + shared_libs: ["liblog"], } subdirs = ["tests"] |