forked from bazelbuild/buildtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
33 lines (27 loc) · 882 Bytes
/
WORKSPACE
File metadata and controls
33 lines (27 loc) · 882 Bytes
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 = "com_github_bazelbuild_buildtools")
# 0.5.5
http_archive(
name = "io_bazel_rules_go",
strip_prefix = "rules_go-71cdb6fd5f887d215bdbe0e4d1eb137278b09c39",
urls = [
"http://mirror.bazel.build/github.com/bazelbuild/rules_go/archive/71cdb6fd5f887d215bdbe0e4d1eb137278b09c39.tar.gz",
"https://github.com/bazelbuild/rules_go/archive/71cdb6fd5f887d215bdbe0e4d1eb137278b09c39.tar.gz",
],
)
load(
"@io_bazel_rules_go//go:def.bzl",
"go_rules_dependencies",
"go_register_toolchains",
"go_repository",
)
go_rules_dependencies()
go_register_toolchains()
# used for build.proto
http_archive(
name = "io_bazel",
strip_prefix = "bazel-0.8.0",
urls = [
"http://mirror.bazel.build/github.com/bazelbuild/bazel/archive/0.8.0.tar.gz",
"https://github.com/bazelbuild/bazel/archive/0.8.0.tar.gz",
],
)