forked from istio/old_mixer_repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adapter_author_deps.bzl
56 lines (47 loc) · 1.88 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
load("@io_bazel_rules_go//go:def.bzl", "go_repository")
def mixer_adapter_repositories():
native.git_repository(
name = "org_pubref_rules_protobuf",
commit = "439c57e42dd4edf488644871ee0e0ec3b7c83b6e", # Sept 1, 2017 (genfiles fix)
remote = "https://github.com/pubref/rules_protobuf",
)
native.git_repository(
name = "com_github_google_protobuf",
commit = "52ab3b07ac9a6889ed0ac9bf21afd8dab8ef0014", # Oct 4, 2016 (match pubref dep)
remote = "https://github.com/google/protobuf.git",
)
native.bind(
name = "protoc",
actual = "@com_github_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 = "8ee79997227bf9b34611aee7946ae64735e6fd93", # 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",
)
go_repository(
name = "org_golang_google_grpc",
commit = "d2e1b51f33ff8c5e4a15560ff049d200e83726c5", # April 28, 2017 (v1.3.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",
)