diff options
| author | 2017-04-27 17:29:29 +0900 | |
|---|---|---|
| committer | 2017-09-05 16:39:21 -0700 | |
| commit | 6163dc911b10f1e8934109d83c0076ac935b71e7 (patch) | |
| tree | 6d1be5f4d51a8d1e46795aefb3c40f9a31e5567e /libs | |
| parent | 7e7457f225ab3c4778a46b6d718acad69d305d4e (diff) | |
Mark libarect and libmath as vendor_available
They are used by libui which is VNDK.
Bug: 37731063
Test: sailfish builds and boots
Test: BOARD_VNDK_VERSION=current m libui is successful
Change-Id: I7ecd9b482f8055aaa159e539d630d0034f4b7074
Merged-In: I7ecd9b482f8055aaa159e539d630d0034f4b7074
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/arect/Android.bp | 1 | ||||
| -rw-r--r-- | libs/math/Android.bp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libs/arect/Android.bp b/libs/arect/Android.bp index 0d25176f98..a20154f834 100644 --- a/libs/arect/Android.bp +++ b/libs/arect/Android.bp @@ -23,5 +23,6 @@ ndk_headers { cc_library_static { name: "libarect", host_supported: true, + vendor_available: true, export_include_dirs: ["include"], } diff --git a/libs/math/Android.bp b/libs/math/Android.bp index 3ef8b4aa05..693bace1f4 100644 --- a/libs/math/Android.bp +++ b/libs/math/Android.bp @@ -15,6 +15,7 @@ cc_library_static { name: "libmath", host_supported: true, + vendor_available: true, export_include_dirs: ["include"], } |