Skip to content

Commit

Permalink
[bzlmod] Set repo_name to com_google_protobuf (#16495)
Browse files Browse the repository at this point in the history
This is currently required by https://github.com/protocolbuffers/protobuf/blob/8d025c08ff9c4e63f37f62b64f3046183ef7ab20/upb_generator/bootstrap_compiler.bzl#L30

We could try to change it but this is fine to do for now

Closes #16495

COPYBARA_INTEGRATE_REVIEW=#16495 from keith:ks/bzlmod-set-repo_name-to-com_google_protobuf 357776d
FUTURE_COPYBARA_INTEGRATE_REVIEW=#16495 from keith:ks/bzlmod-set-repo_name-to-com_google_protobuf 357776d
PiperOrigin-RevId: 625771676
  • Loading branch information
keith authored and copybara-github committed Apr 17, 2024
1 parent 71f9906 commit 954a297
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
# TODO: migrate all dependencies from WORKSPACE to MODULE.bazel
# https://github.com/protocolbuffers/protobuf/issues/14313
PROTOBUF_VERSION = "27.0"
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")
Expand All @@ -24,4 +25,4 @@ bazel_dep(name = "platforms", version = "0.0.8")
bazel_dep(name = "zlib", version = "1.2.11")

# TODO: remove after toolchain types are moved to protobuf
bazel_dep(name = "rules_proto", version = "4.0.0")
bazel_dep(name = "rules_proto", version = "4.0.0")

0 comments on commit 954a297

Please sign in to comment.