diff options
author | Justin Yun <justinyun@google.com> | 2017-07-31 15:41:10 +0900 |
---|---|---|
committer | Justin Yun <justinyun@google.com> | 2017-08-23 17:56:13 +0900 |
commit | 9ca92458e272c63f838d0c9340650f29d6eef81e (patch) | |
tree | 411571e86c2ec95537ec5885cf844204ff7542c0 /libion | |
parent | 7f16cad877571ce8ef0808dcdb81234d61b771ca (diff) | |
download | core-9ca92458e272c63f838d0c9340650f29d6eef81e.tar.gz core-9ca92458e272c63f838d0c9340650f29d6eef81e.tar.bz2 core-9ca92458e272c63f838d0c9340650f29d6eef81e.zip |
Mark the modules as VNDK-SP in Android.bp
As a VNDK-SP module, Android.bp must have 'vndk' tag as well as
'vendor_available: true'.
The 'vndk' tag for VNDK-SP formated as follows:
vndk: {
enabled: true,
support_system_process: true,
},
VNDK-SP modules will be installed both in system/lib(64) as normal
and in system/lib(64)/vndk-sp as a vendor variant.
Bug: 63866913
Test: build and boot with BOARD_VNDK_VERSION=current
Merged-In: I51fe0859f63ad58b7b91909e7d7d4206443228cd
Change-Id: I51fe0859f63ad58b7b91909e7d7d4206443228cd
(cherry picked from commit aeb68e86e4e335d4b201c46099cc2ce1256beec2)
Diffstat (limited to 'libion')
-rw-r--r-- | libion/Android.bp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libion/Android.bp b/libion/Android.bp index 6f267e4c7..6d9fae076 100644 --- a/libion/Android.bp +++ b/libion/Android.bp @@ -1,7 +1,11 @@ cc_library { name: "libion", - vendor_available: true, + vendor_available: true, + vndk: { + enabled: true, + support_system_process: true, + }, srcs: ["ion.c"], shared_libs: ["liblog"], local_include_dirs: [ |