Simplify tools/buildgen/extract_metadata_from_bazel_xml.py to prepare for protobuf upgrade. (#32590)

`bazel query deps(//src/proto/...)` seems unnecessary (regenerated
projects are identical) and causes trouble with protobuf 22.x (since it
basically breaks `tools/buildgen/generate_projects.sh` run and that
makes upgrade experiments painful).
pull/32607/head
Jan Tattermusch 2 years ago committed by GitHub
parent ac7faf75ba
commit d812dc6757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      tools/buildgen/extract_metadata_from_bazel_xml.py

@ -1086,7 +1086,6 @@ _BAZEL_DEPS_QUERIES = [
'deps("//test/...")', 'deps("//test/...")',
'deps("//:all")', 'deps("//:all")',
'deps("//src/compiler/...")', 'deps("//src/compiler/...")',
'deps("//src/proto/...")',
# The ^ is needed to differentiate proto_library from go_proto_library # The ^ is needed to differentiate proto_library from go_proto_library
'deps(kind("^proto_library", @envoy_api//envoy/...))', 'deps(kind("^proto_library", @envoy_api//envoy/...))',
] ]

Loading…
Cancel
Save