diff options
author | Justin Yun <justinyun@google.com> | 2017-08-04 15:02:42 +0900 |
---|---|---|
committer | Jae Shin <jaeshin@google.com> | 2017-09-14 01:30:51 +0000 |
commit | 52cadaec394f9c500e4155b8b0c2e8b9cf8899d4 (patch) | |
tree | d7dab4882209e6b68c5c543c0f78f72022e13bb7 | |
parent | 1b08076ad53aff6a37fc1e5eada77dc168daa6e9 (diff) | |
download | platform_hardware_interfaces-52cadaec394f9c500e4155b8b0c2e8b9cf8899d4.tar.gz platform_hardware_interfaces-52cadaec394f9c500e4155b8b0c2e8b9cf8899d4.tar.bz2 platform_hardware_interfaces-52cadaec394f9c500e4155b8b0c2e8b9cf8899d4.zip |
Mark hidl utils as vndk
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: If0eb0c1bddfa5bdc7ea0ca4635d4e53b59836582
Change-Id: If0eb0c1bddfa5bdc7ea0ca4635d4e53b59836582
(cherry picked from commit eff28dc3ba58bc734fc77fed478fc7a77fa9348e)
-rw-r--r-- | configstore/utils/Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configstore/utils/Android.bp b/configstore/utils/Android.bp index a4cad66559..93e52f1d4e 100644 --- a/configstore/utils/Android.bp +++ b/configstore/utils/Android.bp @@ -17,6 +17,9 @@ cc_library_shared { name: "android.hardware.configstore-utils", vendor_available: true, + vndk: { + enabled: true, + }, defaults: ["hidl_defaults"], srcs: [ "ConfigStoreUtils.cpp" ], |