From c32a2f9965a0963cd58e4fd19f32abac99d23da3 Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Wed, 27 Sep 2023 12:16:09 -0700 Subject: [PATCH] Remove upb dependency from protobuf_deps.bzl This dependency is obsolete now that upb has been merged into the protobuf Bazel repo. PiperOrigin-RevId: 568924745 --- protobuf_deps.bzl | 8 -------- 1 file changed, 8 deletions(-) diff --git a/protobuf_deps.bzl b/protobuf_deps.bzl index 7c2f85e555..f380b426a8 100644 --- a/protobuf_deps.bzl +++ b/protobuf_deps.bzl @@ -145,11 +145,3 @@ def protobuf_deps(): urls = ["https://github.com/bazelbuild/rules_kotlin/releases/download/v1.8.1/rules_kotlin_release.tgz"], sha256 = "a630cda9fdb4f56cf2dc20a4bf873765c41cf00e9379e8d59cd07b24730f4fde", ) - - if not native.existing_rule("upb"): - http_archive( - name = "upb", - url = "https://github.com/protocolbuffers/protobuf/archive/7242c3619c6db9843614b2c865681bf397261be8.zip", - strip_prefix = "protobuf-7242c3619c6db9843614b2c865681bf397261be8/upb", - sha256 = "0fc581f5e5caaf30c7119a73f2cff5d45424e4a4f23a52ebba73e3df031ad1c6", - )