-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
32 lines (24 loc) · 950 Bytes
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
workspace(name = "rai_keygen")
git_repository(
name = "io_bazel_rules_go",
commit = "570488593c55ad61a18c3d6095344f25da8a84e1", # master on 2018-01-04
remote = "https://github.com/bazelbuild/rules_go",
)
git_repository(
name = "bazel_gazelle",
commit = "9e43c85089c3247fece397f95dabc1cb63096a59", # master on 2018-01-09
remote = "https://github.com/bazelbuild/bazel-gazelle",
)
git_repository(
name = "build_tools",
commit = "72c03d74aab4cbe9fe6860f6d5571f2aa292e47c",
remote = "https://github.com/rai-project/build_tools",
)
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains", "go_repository")
load("@io_bazel_rules_go//proto:def.bzl", "proto_register_toolchains")
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
load("@build_tools//:esc.bzl", "esc_repositories")
go_rules_dependencies()
go_register_toolchains()
gazelle_dependencies()
esc_repositories()