diff options
author | Jiyong Park <jiyong@google.com> | 2017-06-26 18:09:57 +0900 |
---|---|---|
committer | Steven Moreland <smoreland@google.com> | 2017-09-05 15:24:01 -0700 |
commit | 85d613acec417aa029dae4c789008070bf578808 (patch) | |
tree | 36f047b0f3d8e13dc84bb9628cd619d4d5b27bbf /android | |
parent | ed6a0cb1f19290ffc824f4ccfcaeffe1effae47c (diff) |
Mark libsqlite as vendor_available
There are some vendor libs that are using libsqlite. So marking it as
vendor_available.
Bug: 37560614
Test: BOARD_VNDK_VERSION=current m -j libsqlite.vendor
Change-Id: I45823c4d42071f505583a955564cdd78742e8029
Merged-In: I45823c4d42071f505583a955564cdd78742e8029
Diffstat (limited to 'android')
-rw-r--r-- | android/Android.bp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/android/Android.bp b/android/Android.bp index 299dc31..bbe6fed 100644 --- a/android/Android.bp +++ b/android/Android.bp @@ -1,5 +1,6 @@ cc_library_static { name: "libsqlite3_android", + vendor_available: true, host_supported: true, srcs: [ "PhoneNumberUtils.cpp", @@ -7,8 +8,8 @@ cc_library_static { "sqlite3_android.cpp", ], include_dirs: ["external/sqlite/dist"], - static_libs: ["liblog"], shared_libs: [ + "liblog", "libicuuc", "libicui18n", ], |