Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/private/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def go_rules_dependencies():
commit = "8dea3dc473e90c8179e519d91302d0597c0ca1d1", # v1.15.0, latest as of 2018-09-28
patches = [
"@io_bazel_rules_go//third_party:org_golang_google_grpc-gazelle.patch",
"@io_bazel_rules_go//third_party:org_golang_google_grpc-android.patch",
"@io_bazel_rules_go//third_party:org_golang_google_grpc-crosscompile.patch",
],
patch_args = ["-p1"],
# gazelle args: -go_prefix google.golang.org/grpc -proto disable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
diff -urN b/internal/channelz/BUILD.bazel c/internal/channelz/BUILD.bazel
--- b/internal/channelz/BUILD.bazel 2018-09-27 16:55:16.110787059 -0400
+++ c/internal/channelz/BUILD.bazel 2018-09-27 16:55:54.851285539 -0400
@@ -17,6 +17,9 @@
@@ -17,6 +17,15 @@
"//credentials:go_default_library",
"//grpclog:go_default_library",
] + select({
+ "@io_bazel_rules_go//go/platform:darwin": [
+ "@org_golang_x_sys//unix:go_default_library",
+ ],
+ "@io_bazel_rules_go//go/platform:windows": [
+ "@org_golang_x_sys//unix:go_default_library",
+ ],
+ "@io_bazel_rules_go//go/platform:android": [
+ "@org_golang_x_sys//unix:go_default_library",
+ ],
"@io_bazel_rules_go//go/platform:linux": [
"@org_golang_x_sys//unix:go_default_library",
],
@@ -29,6 +32,9 @@
@@ -29,6 +38,9 @@
srcs = ["util_test.go"],
embed = [":go_default_library"],
deps = select({
Expand Down