diff options
author | Jiyong Park <jiyong@google.com> | 2017-06-26 18:09:57 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2017-06-26 18:09:57 +0900 |
commit | 83ebca9ec9c24d0c291e76aa2ef853ad38ea9dfe (patch) | |
tree | ee9b29151b6e6467ad5bb1654e27f12f675c61df | |
parent | 0ecf63ccc93487b7995689906c32feeb2253b1c1 (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
-rw-r--r-- | android/Android.bp | 3 | ||||
-rw-r--r-- | dist/Android.bp | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/android/Android.bp b/android/Android.bp index 7c17c6a..c610e34 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", ], diff --git a/dist/Android.bp b/dist/Android.bp index a943f61..4f33f69 100644 --- a/dist/Android.bp +++ b/dist/Android.bp @@ -66,6 +66,7 @@ cc_defaults { cc_library { name: "libsqlite", defaults: ["sqlite-defaults"], + vendor_available: true, srcs: ["sqlite3.c"], |