From 52cadaec394f9c500e4155b8b0c2e8b9cf8899d4 Mon Sep 17 00:00:00 2001 From: Justin Yun Date: Fri, 4 Aug 2017 15:02:42 +0900 Subject: [PATCH] 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) --- configstore/utils/Android.bp | 3 +++ 1 file changed, 3 insertions(+) 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" ],