xref: /aosp_15_r20/external/brotli/go/WORKSPACE (revision f4ee7fba7774faf2a30f13154332c0a06550dbc4)
1workspace(name = "org_brotli_go")
2
3local_repository(
4    name = "org_brotli",
5    path = "..",
6)
7
8load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
9
10http_archive(
11    name = "io_bazel_rules_go",
12    urls = [
13        "https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/0.19.0/rules_go-0.19.0.tar.gz",
14        "https://github.com/bazelbuild/rules_go/releases/download/0.19.0/rules_go-0.19.0.tar.gz",
15    ],
16    sha256 = "9fb16af4d4836c8222142e54c9efa0bb5fc562ffc893ce2abeac3e25daead144",
17)
18
19load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
20go_rules_dependencies()
21go_register_toolchains()
22