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