summaryrefslogtreecommitdiffstats
path: root/MODULE.bazel
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2024-07-21 06:08:58 (GMT)
committerCopybara-Service <copybara-worker@google.com>2024-07-21 06:09:44 (GMT)
commitcee1ba1f24fb12b9ae8f31e70dca3f73dbb12cc2 (patch)
tree3a1ca5a0e45d8b7ad78db95b88c5ddd1acbf1346 /MODULE.bazel
parent9ff2450a56aed4f7f124f5104d9e3088bf791ee9 (diff)
downloadgoogletest-cee1ba1f24fb12b9ae8f31e70dca3f73dbb12cc2.zip
googletest-cee1ba1f24fb12b9ae8f31e70dca3f73dbb12cc2.tar.gz
googletest-cee1ba1f24fb12b9ae8f31e70dca3f73dbb12cc2.tar.bz2
Change the Bazel build to use the canonical repo names used by Bzlmod
and the Bazel Central Registry GoogleTest and its dependencies now use the following names: GoogleTest: com_google_googletest -> googletest Abseil: com_google_absl -> abseil-cpp RE2: com_googlesource_code_re2 -> re2 Bazel users using the WORKSPACE file to specify dependencies may need to use https://bazel.build/rules/lib/repo/http#http_archive-repo_mapping to remap repositories to their former names if their dependencies do not agree on on which name is used. It is recommended that users migrate to bzlmod to manage Bazel dependencies. PiperOrigin-RevId: 654430227 Change-Id: Iae8797994d7d87bd4f013dcdc889e7494a6ad2fb
Diffstat (limited to 'MODULE.bazel')
-rw-r--r--MODULE.bazel4
1 files changed, 1 insertions, 3 deletions
diff --git a/MODULE.bazel b/MODULE.bazel
index b179fe9..8df73fb 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -40,14 +40,12 @@ module(
# Please keep the versions in sync with the versions in the WORKSPACE file.
bazel_dep(name = "abseil-cpp",
- version = "20240116.2",
- repo_name = "com_google_absl")
+ version = "20240116.2")
bazel_dep(name = "platforms",
version = "0.0.10")
bazel_dep(name = "re2",
- repo_name = "com_googlesource_code_re2",
version = "2024-07-02")
bazel_dep(name = "rules_python",