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