From c7b7c439bdb043e297f0005cb93648c36871aef9 Mon Sep 17 00:00:00 2001 From: Justin Yun Date: Fri, 6 Dec 2019 15:14:36 +0900 Subject: [PATCH] AOSP: Add vendor_available: true Make libext2-headers and libext2_uuid available to vendor and product. They are required by f2fs-tools which are installed in product partition. Bug: 120954888 Bug: 145580164 Test: set PRODUCT_PRODUCT_VNDK_VERSION := current and build Change-Id: Ibf5678448f9efbcb72c0544a3a50280fbfee2f38 From AOSP commit: 2c79a5f79197c090fc9c9534546f4ab4f7690809 --- lib/Android.bp | 1 + lib/uuid/Android.bp | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/Android.bp b/lib/Android.bp index 771bb59..77f69da 100644 --- a/lib/Android.bp +++ b/lib/Android.bp @@ -6,6 +6,7 @@ cc_library_headers { name: "libext2-headers", host_supported: true, + vendor_available: true, recovery_available: true, target: { windows: { diff --git a/lib/uuid/Android.bp b/lib/uuid/Android.bp index ea349e3..7d4dfca 100644 --- a/lib/uuid/Android.bp +++ b/lib/uuid/Android.bp @@ -4,6 +4,7 @@ cc_library { name: "libext2_uuid", host_supported: true, recovery_available: true, + vendor_available: true, unique_host_soname: true, defaults: ["e2fsprogs-defaults"], srcs: [ -- 1.8.3.1