Skip to content

Commit

Permalink
Expose build event stream and starlark debugging protos
Browse files Browse the repository at this point in the history
This makes the build event stream and starlark debugging proto libraries public. This is for consumption by the vscode-bazel plugin, which already uses these but in a very hacky way.

Fixes bazelbuild#16335
Fixes bazelbuild#3684

Closes bazelbuild#21196.

PiperOrigin-RevId: 623740758
Change-Id: Ic47d6dd05fcf2af8beec4d9212d4c7fd65bcda44
  • Loading branch information
cameron-martin authored and bazel-io committed Apr 11, 2024
1 parent 280ba8c commit 9414506
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ java_proto_library(
proto_library(
name = "build_event_stream_proto",
srcs = ["build_event_stream.proto"],
visibility = ["//visibility:public"],
deps = [
"//src/main/java/com/google/devtools/build/lib/packages/metrics:package_load_metrics_proto",
"//src/main/protobuf:action_cache_proto",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ java_proto_library(
proto_library(
name = "starlark_debugging_proto",
srcs = ["starlark_debugging.proto"],
visibility = ["//visibility:public"],
)

0 comments on commit 9414506

Please sign in to comment.