WORKSPACE 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. workspace(name = "com_google_googletest")
  2. load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
  3. http_archive(
  4. name = "com_google_absl", # 2023-01-10T21:08:25Z
  5. sha256 = "f9a4e749f42c386a32a90fddf0e2913ed408d10c42f7f33ccf4c59ac4f0d1d05",
  6. strip_prefix = "abseil-cpp-52835439ca90d86b27bf8cd1708296e95604d724",
  7. urls = ["https://github.com/abseil/abseil-cpp/archive/52835439ca90d86b27bf8cd1708296e95604d724.zip"],
  8. )
  9. # Note this must use a commit from the `abseil` branch of the RE2 project.
  10. # https://github.com/google/re2/tree/abseil
  11. http_archive(
  12. name = "com_googlesource_code_re2", # 2022-12-21T14:29:10Z
  13. sha256 = "b9ce3a51beebb38534d11d40f8928d40509b9e18a735f6a4a97ad3d014c87cb5",
  14. strip_prefix = "re2-d0b1f8f2ecc2ea74956c7608b6f915175314ff0e",
  15. urls = ["https://github.com/google/re2/archive/d0b1f8f2ecc2ea74956c7608b6f915175314ff0e.zip"],
  16. )
  17. http_archive(
  18. name = "rules_python", # 2023-01-10T22:00:51Z
  19. sha256 = "5de54486a60ad8948dabe49605bb1c08053e04001a431ab3e96745b4d97a4419",
  20. strip_prefix = "rules_python-70cce26432187a60b4e950118791385e6fb3c26f",
  21. urls = ["https://github.com/bazelbuild/rules_python/archive/70cce26432187a60b4e950118791385e6fb3c26f.zip"],
  22. )
  23. http_archive(
  24. name = "bazel_skylib", # 2022-11-16T18:29:32Z
  25. sha256 = "a22290c26d29d3ecca286466f7f295ac6cbe32c0a9da3a91176a90e0725e3649",
  26. strip_prefix = "bazel-skylib-5bfcb1a684550626ce138fe0fe8f5f702b3764c3",
  27. urls = ["https://github.com/bazelbuild/bazel-skylib/archive/5bfcb1a684550626ce138fe0fe8f5f702b3764c3.zip"],
  28. )
  29. http_archive(
  30. name = "platforms", # 2022-11-09T19:18:22Z
  31. sha256 = "b4a3b45dc4202e2b3e34e3bc49d2b5b37295fc23ea58d88fb9e01f3642ad9b55",
  32. strip_prefix = "platforms-3fbc687756043fb58a407c2ea8c944bc2fe1d922",
  33. urls = ["https://github.com/bazelbuild/platforms/archive/3fbc687756043fb58a407c2ea8c944bc2fe1d922.zip"],
  34. )