forked from bazel-contrib/rules_go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
28 lines (21 loc) · 865 Bytes
/
Copy pathWORKSPACE
File metadata and controls
28 lines (21 loc) · 865 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
workspace(name = "io_bazel_rules_go")
load("//go:def.bzl", "go_repositories", "new_go_repository")
load("//go/private:go_repositories.bzl", "go_internal_tools_deps")
go_repositories(
# DO NOT specify this internal attribute outside of rules_go project itself.
rules_go_repo_only_for_internal_use = "@",
)
new_go_repository(
name = "com_github_golang_glog",
commit = "23def4e6c14b4da8ac2ed8007337bc5eb5007998",
importpath = "github.com/golang/glog",
# DO NOT specify this internal attribute outside of rules_go project itself.
rules_go_repo_only_for_internal_use = "@",
)
go_internal_tools_deps()
# Protocol buffers
load("//proto:go_proto_library.bzl", "go_proto_repositories")
go_proto_repositories(
# DO NOT specify this internal attribute outside of rules_go project itself.
rules_go_repo_only_for_internal_use = "@",
)