Add vendor_available and apex_available to libfruit.

This allows libfruit to be used by cuttlefish vm manager code.

Test: m -j
Change-Id: Ifee1815cff198e8910e6863618f4324d2845f28c
diff --git a/Android.bp b/Android.bp
index aad4a60..444c19c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -40,8 +40,13 @@
 cc_library {
     name: "libfruit",
     host_supported: true,
+    vendor_available: true,
     export_include_dirs: ["include", "configuration/android"],
     srcs: ["src/**/*.cpp", ],
+    apex_available: [
+        "//apex_available:platform",
+        "//apex_available:anyapex",
+    ],
 }
 
 // TODO: tests written in python+pytest that calls back into compiler. unclear how to best proceed.