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
  • Loading branch information
cameron-martin committed Feb 4, 2024
1 parent 55ba859 commit 2b3b853
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 2b3b853

Please sign in to comment.