| Build the APK with buck2, from pins rather than from a second checkout | 1 | # The pinned fetcher. See ../dist.bzl; the version and digest come from |
| 2 | # scripts/dotslash.dotslash. | |
| 3 | load("//:dist.bzl", "dist_archive", "dotslash_dist") | |
| 4 | ||
| 5 | dotslash_dist(name = "dotslash", platform = "linux-x86_64") | |
| 6 | ||
| 7 | # jolt-native's release. Both are what a build gets when there is no sibling | |
| 8 | # checkout to prefer — see the `buck` recipe in the justfile. | |
| 9 | dist_archive(name = "libvidya-android", tool = "libvidya-android", platform = "linux-x86_64") | |
| 10 | ||
| 11 | dist_archive(name = "glimmer-vidya", tool = "glimmer-vidya", platform = "linux-x86_64") | |
| 12 | ||
| 13 | dist_archive(name = "android-glue", tool = "android-glue", platform = "linux-x86_64") |