Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52cadaec authored by Justin Yun's avatar Justin Yun Committed by Jae Shin
Browse files

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 eff28dc3)
parent 1b08076a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -17,6 +17,9 @@
cc_library_shared {
    name: "android.hardware.configstore-utils",
    vendor_available: true,
    vndk: {
        enabled: true,
    },
    defaults: ["hidl_defaults"],

    srcs: [ "ConfigStoreUtils.cpp" ],