summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-15 09:19:21 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-15 09:19:21 +0000
commitc9b97c103ac302962c334ab5ff02bceeb9c281e5 (patch)
treef4db3bc36610ed25254b64467548f2082380ba74
parent16cf3e6ddf2630099763851633fa561b6ae50af4 (diff)
parent483ccb2c7987a6d2899298707c63a02481ff7787 (diff)
downloadcuttlefish_prebuilts-aml_tz5_341510010.tar.gz
Snap for 11224086 from 483ccb2c7987a6d2899298707c63a02481ff7787 to mainline-tzdata5-releaseaml_tz5_341510070aml_tz5_341510050aml_tz5_341510010aml_tz5_341510010
Change-Id: I0f62ede6e3cacd5de0d0d0be5ee0fc318ab5b0f4
-rw-r--r--Android.bp38
-rwxr-xr-xcvd/cvd_arm64bin0 -> 10792656 bytes
-rwxr-xr-xcvd/cvd_x86_64bin0 -> 11715888 bytes
-rwxr-xr-xcvd/fetch_cvd_arm64bin0 -> 10792664 bytes
-rwxr-xr-xcvd/fetch_cvd_x86_64bin0 -> 11715896 bytes
5 files changed, 38 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 95166aea..d9576e89 100644
--- a/Android.bp
+++ b/Android.bp
@@ -44,3 +44,41 @@ cc_prebuilt_binary {
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 00000000..78ddc615
--- /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 00000000..50c0defd
--- /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 00000000..6022bf9a
--- /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 00000000..87a61603
--- /dev/null
+++ b/cvd/fetch_cvd_x86_64
Binary files differ