diff options
author | dimitry <dimitry@google.com> | 2019-05-14 11:58:19 +0200 |
---|---|---|
committer | dimitry <dimitry@google.com> | 2019-05-14 12:15:21 +0200 |
commit | e1a2b0ad636515fde70f784f43930ce1caf70f4b (patch) | |
tree | 90515e7752c8b765985bf2b541b03e198e0bd833 /android | |
parent | 5ab41d192366efc8371130cb2f91f02b0b258449 (diff) |
Enable native_bridge_support for libsqlite
Android build system added support for building translated binaries
used on natively bridge targets (arm on x86 for example).
However in order to avoid building unnecessary binaries and libraries
for such architectures most modules do not support native bridge by default.
All needed modules have to explicitly indicate if they may be used as part
of translated binary build.
This change enabled native bridge support for libsqlite because is a greylisted
library and needs to be available to apps targeting Andorid version < 24
Bug: http://b/77159578
Test: make
Change-Id: Idc03773014ef2ddd20e4c6b164cb5f4cd3f2d142
Diffstat (limited to 'android')
-rw-r--r-- | android/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/android/Android.bp b/android/Android.bp index 849ce70..b32bb47 100644 --- a/android/Android.bp +++ b/android/Android.bp @@ -2,6 +2,7 @@ cc_library_static { name: "libsqlite3_android", vendor_available: true, host_supported: true, + native_bridge_supported: true, cflags: [ "-DSQLITE_ENABLE_ICU", "-Wall", |