Internal change

PiperOrigin-RevId: 519010016
This commit is contained in:
Hadon Nash
2023-03-23 17:51:26 -07:00
committed by Copybara-Service
parent 6aab4e013d
commit 8a55f11952
6 changed files with 5 additions and 4 deletions
@@ -33,6 +33,7 @@ def replace_deps(deps, old, new, drop_google_protobuf = True):
deps = [dep for dep in deps if not dep.startswith("@com_google_protobuf//")]
deps = [replace_suffix(dep, "any_proto", "cc_wkt_protos") for dep in deps]
deps = [dep for dep in deps if not dep.endswith("_annotations")]
deps = [replace_suffix(dep, old, new) for dep in deps]
return deps