diff options
| author | Justin Yun <justinyun@google.com> | 2017-07-24 15:19:45 +0900 |
|---|---|---|
| committer | Jae Shin <jaeshin@google.com> | 2017-09-14 08:35:16 +0000 |
| commit | 6a7e8823165dbe2e60caac9a8e09a9de7f3a157e (patch) | |
| tree | 6b048b89df29070c67d363eeb3a4e24f5ad1825c /libdiskconfig | |
| parent | e997ba9d22cfaadb20f990b6840934e2b25acd89 (diff) | |
| download | system_core-6a7e8823165dbe2e60caac9a8e09a9de7f3a157e.tar.gz system_core-6a7e8823165dbe2e60caac9a8e09a9de7f3a157e.tar.bz2 system_core-6a7e8823165dbe2e60caac9a8e09a9de7f3a157e.zip | |
Mark the modules as VNDK in Android.bp
As a VNDK module, Android.bp must have 'vndk' tag as well as
'vendor_available: true'.
The 'vndk' tag for VNDK module is formated as below:
vndk: {
enabled: true,
},
VNDK modules will be installed both in system/lib(64) as normal and
in system/lib(64)/vndk as a vendor variant.
Bug: 63866913
Test: build and boot with BOARD_VNDK_VERSION=current
Merged-In: Icecb22ed2ed0f58c3168605d4cf64815e2dda750
Change-Id: Icecb22ed2ed0f58c3168605d4cf64815e2dda750
(cherry picked from commit 9b0ed7294273d5f10020388e5a5b7e545a2fd1de)
Diffstat (limited to 'libdiskconfig')
| -rw-r--r-- | libdiskconfig/Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libdiskconfig/Android.bp b/libdiskconfig/Android.bp index 088981a7c..23a5c79d0 100644 --- a/libdiskconfig/Android.bp +++ b/libdiskconfig/Android.bp @@ -1,6 +1,9 @@ cc_library { name: "libdiskconfig", vendor_available: true, + vndk: { + enabled: true, + }, srcs: [ "diskconfig.c", "diskutils.c", |
