From: Jiyong Park Date: Tue, 5 Jan 2021 05:43:46 +0000 (+0900) Subject: AOSP: Add assemble_cvd to com.android.virt X-Git-Tag: v1.45.7~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1af9546e6a1572cbd7d8b70cf5344b5f7e2f51b;p=thirdparty%2Fe2fsprogs.git AOSP: Add assemble_cvd to com.android.virt assemble_cvd directly or indirectly depends on these modules. To add assemble_cvd to the com.anroid.virt APEX, these modules are marked as being available to the APEX. Google-Bug-Id: 174639526 Test: m com.android.virt Change-Id: Ibc28d24abd358fb1f8608b3f3d6d06c2746f2d72 From AOSP commit: e70718ecae3cf1e2a26af800734130e003186e7e --- diff --git a/lib/Android.bp b/lib/Android.bp index 78031aa55..01f6c3dd3 100644 --- a/lib/Android.bp +++ b/lib/Android.bp @@ -17,6 +17,10 @@ cc_library_headers { }, }, export_include_dirs: ["."], + apex_available: [ + "//apex_available:platform", + "com.android.virt", + ], } diff --git a/lib/uuid/Android.bp b/lib/uuid/Android.bp index d8929a617..b56096912 100644 --- a/lib/uuid/Android.bp +++ b/lib/uuid/Android.bp @@ -37,4 +37,8 @@ cc_library { header_libs: ["libext2-headers"], export_include_dirs: ["."], export_header_lib_headers: ["libext2-headers"], + apex_available: [ + "//apex_available:platform", + "com.android.virt", + ], }