We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d59acde commit 5c7876bCopy full SHA for 5c7876b
2 files changed
bazel/gogo.bzl
@@ -23,7 +23,7 @@ def _gogo_grpc_proto_impl(ctx):
23
ctx.file("WORKSPACE", 'workspace(name = "{}")'.format(ctx.name))
24
ctx.file("BUILD.bazel", "")
25
ctx.symlink(
26
- ctx.path(Label("@com_github_gogo_protobuf//gogoproto:gogo.proto")),
+ ctx.path(Label("//third_party/gogoproto:gogo.proto")),
27
"gogoproto/gogo.proto",
28
)
29
ctx.file("gogoproto/BUILD.bazel", """
third_party/gogoproto/BUILD.bazel
@@ -0,0 +1,6 @@
1
+# Create filegroup with a name bazel
2
+filegoup = filegroup(
3
+ name = "bazel",
4
+ srcs = ["gogo.proto"],
5
+ visibility = ["//visibility:public"],
6
+)
0 commit comments