This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
/
adapter_author_deps.bzl
57 lines (47 loc) · 1.81 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 = "ff3b7e7963daa7cb3b42f8936bc11eda4b960926", # Oct 03, 2017 (Updating External Import Paths)
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 = "100ba4e885062801d56799d78530b73b178a78f3", # Mar 7, 2017 (match pubref dep)
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",
)