forked from bazelbuild/intellij
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Export bazel protos directly through copybara.
Removes dependency on bazel in github repo. PiperOrigin-RevId: 350780741
- Loading branch information
1 parent
094e384
commit 63a5456
Showing
35 changed files
with
5,920 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
third_party/bazel/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/BUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
load("@rules_java//java:defs.bzl", "java_proto_library") | ||
load("@rules_proto//proto:defs.bzl", "proto_library") | ||
|
||
package(default_visibility = ["//src:__subpackages__"]) | ||
|
||
filegroup( | ||
name = "srcs", | ||
srcs = glob(["**"]), | ||
visibility = ["//third_party/bazel/src/main/java/com/google/devtools/build/lib:__pkg__"], | ||
) | ||
|
||
java_proto_library( | ||
name = "build_event_stream_java_proto", | ||
# The Bazel IntelliJ plugin uses this. | ||
visibility = ["//visibility:public"], | ||
deps = ["build_event_stream_proto"], | ||
) | ||
|
||
proto_library( | ||
name = "build_event_stream_proto", | ||
srcs = ["build_event_stream.proto"], | ||
deps = [ | ||
"//third_party/bazel/src/main/protobuf:command_line_proto", | ||
"//third_party/bazel/src/main/protobuf:failure_details_proto", | ||
"//third_party/bazel/src/main/protobuf:invocation_policy_proto", | ||
], | ||
) |
Oops, something went wrong.