Mark as recovery_available:true

Libraries that are direct or indirect dependencies of modules installed
to recovery partition (e.g. adbd) are marked as recovery_available:
true. This allows a recovery variant of the lib is created when it is
depended by other recovery or recovery_available modules.

Bug: 79146551
Test: m -j
Change-Id: I7bee45375b03d3ada86263580ddcb201e683f024
diff --git a/ext4_utils/Android.bp b/ext4_utils/Android.bp
index ff17edb..ea60212 100644
--- a/ext4_utils/Android.bp
+++ b/ext4_utils/Android.bp
@@ -4,6 +4,7 @@
     name: "libext4_utils",
     defaults: ["system-extras-cflags-defaults"],
     host_supported: true,
+    recovery_available: true,
     srcs: [
         "make_ext4fs.c",
         "ext4fixup.c",
diff --git a/libfec/Android.bp b/libfec/Android.bp
index 209465d..8c4c32d 100644
--- a/libfec/Android.bp
+++ b/libfec/Android.bp
@@ -3,6 +3,7 @@
 cc_library {
     name: "libfec",
     host_supported: true,
+    recovery_available: true,
     srcs: [
         "fec_open.cpp",
         "fec_read.cpp",
diff --git a/squashfs_utils/Android.bp b/squashfs_utils/Android.bp
index aa03d2f..813f42f 100644
--- a/squashfs_utils/Android.bp
+++ b/squashfs_utils/Android.bp
@@ -4,6 +4,7 @@
     name: "libsquashfs_utils",
     defaults: ["system-extras-cflags-defaults"],
     host_supported: true,
+    recovery_available: true,
     srcs: [
         "squashfs_utils.c",
     ],