forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adapter_author_deps.bzl
57 lines (47 loc) · 1.79 KB
/
adapter_author_deps.bzl
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
load("@io_bazel_rules_go//go:def.bzl", "go_repository")
def mixer_adapter_repositories():
native.git_repository(
name = "org_pubref_rules_protobuf",
commit = "563b674a2ce6650d459732932ea2bc98c9c9a9bf", # Nov 28, 2017 (bazel 0.8.0 support)
remote = "https://github.com/pubref/rules_protobuf",
)
native.bind(
name = "protoc",
actual = "@com_google_protobuf//:protoc",
)
native.bind(
name = "protocol_compiler",
actual = "@com_google_protobuf//:protoc",
)
go_repository(
name = "org_golang_x_net",
commit = "f5079bd7f6f74e23c4d65efa0f4ce14cbd6a3c0f", # Jul 26, 2017 (no releases)
importpath = "golang.org/x/net",
)
go_repository(
name = "com_github_golang_glog",
commit = "23def4e6c14b4da8ac2ed8007337bc5eb5007998", # Jan 26, 2016 (no releases)
importpath = "github.com/golang/glog",
)
go_repository(
name = "com_github_golang_protobuf",
commit = "17ce1425424ab154092bbb43af630bd647f3bb0d", # Nov 16, 2016 (match pubref dep)
importpath = "github.com/golang/protobuf",
)
go_repository(
name = "com_github_gogo_protobuf",
commit = "342cbe0a04158f6dcb03ca0079991a51a4248c02", # Oct 7, 2017 (v0.5)
importpath = "github.com/gogo/protobuf",
build_file_proto_mode = "legacy",
)
go_repository(
name = "org_golang_google_grpc",
commit = "f92cdcd7dcdc69e81b2d7b338479a19a8723cfa3", # Aug 30, 2017 (v1.6.0)
importpath = "google.golang.org/grpc",
)
go_repository(
name = "org_golang_x_text",
build_file_name = "BUILD.bazel",
commit = "f4b4367115ec2de254587813edaa901bc1c723a8", # Mar 31, 2017 (no releases)
importpath = "golang.org/x/text",
)