Snap for 11224086 from 483ccb2c7987a6d2899298707c63a02481ff7787 to mainline-tzdata5-release

Change-Id: I0f62ede6e3cacd5de0d0d0be5ee0fc318ab5b0f4
diff --git a/Android.bp b/Android.bp
index 95166ae..d9576e8 100644
--- a/Android.bp
+++ b/Android.bp
@@ -44,3 +44,41 @@
     device_supported: false,
     host_supported: true,
 }
+
+// These are set up as two separate executables rather than a symlink so that
+// either can be downloaded as a standalone statically linked executable from
+// the build system.
+// arch arm64 manifest is at https://ci.android.com/builds/submitted/10769592/
+// aosp_cf_arm64_only_phone-trunk_staging-userdebug/latest/manifest_10769592.xml
+// arch x86_64 manifest is at https://ci.android.com/builds/submitted/10763722/
+// aosp_cf_x86_64_phone-trunk_staging-userdebug/latest/manifest_10763722.xml
+// ARM64 cvd BID is 10769592, x86_64 cvd BID is 10763722.
+
+cc_prebuilt_binary  {
+    name: "cvd",
+    arch: {
+        arm64: {
+            srcs: ["cvd/cvd_arm64"],
+        },
+        x86_64: {
+            srcs: ["cvd/cvd_x86_64"],
+        },
+    },
+    symlinks: ["acloud"],
+    device_supported: false,
+    host_supported: true,
+}
+
+cc_prebuilt_binary  {
+    name: "fetch_cvd",
+    arch: {
+        arm64: {
+            srcs: ["cvd/fetch_cvd_arm64"],
+        },
+        x86_64: {
+            srcs: ["cvd/fetch_cvd_x86_64"],
+        },
+    },
+    device_supported: false,
+    host_supported: true,
+}
diff --git a/cvd/cvd_arm64 b/cvd/cvd_arm64
new file mode 100755
index 0000000..78ddc61
--- /dev/null
+++ b/cvd/cvd_arm64
Binary files differ
diff --git a/cvd/cvd_x86_64 b/cvd/cvd_x86_64
new file mode 100755
index 0000000..50c0def
--- /dev/null
+++ b/cvd/cvd_x86_64
Binary files differ
diff --git a/cvd/fetch_cvd_arm64 b/cvd/fetch_cvd_arm64
new file mode 100755
index 0000000..6022bf9
--- /dev/null
+++ b/cvd/fetch_cvd_arm64
Binary files differ
diff --git a/cvd/fetch_cvd_x86_64 b/cvd/fetch_cvd_x86_64
new file mode 100755
index 0000000..87a6160
--- /dev/null
+++ b/cvd/fetch_cvd_x86_64
Binary files differ