[bzlmod] Set repo_name to com_google_protobuf

This is currently required by 8d025c08ff/upb_generator/bootstrap_compiler.bzl (L30)

We could try to change it but this is fine to do for now
pull/16495/head
Keith Smiley 12 months ago
parent 8d025c08ff
commit 357776de4a
No known key found for this signature in database
GPG Key ID: 33BA60D44C7167F8
  1. 5
      MODULE.bazel

@ -4,15 +4,16 @@ PROTOBUF_VERSION = "27.0"
module(
name = "protobuf",
compatibility_level = 1,
version = PROTOBUF_VERSION,
compatibility_level = 1,
repo_name = "com_google_protobuf",
)
# LOWER BOUND dependency versions.
# Bzlmod follows MVS:
# https://bazel.build/versions/6.0.0/build/bzlmod#version-resolution
# Thus the highest version in their module graph is resolved.
bazel_dep(name = "abseil-cpp", repo_name = "com_google_absl", version = "20230802.0.bcr.1")
bazel_dep(name = "abseil-cpp", version = "20230802.0.bcr.1", repo_name = "com_google_absl")
bazel_dep(name = "bazel_skylib", version = "1.4.1")
bazel_dep(name = "jsoncpp", version = "1.9.5")
bazel_dep(name = "rules_cc", version = "0.0.9")

Loading…
Cancel
Save