2017-08-10 14:47:24 -04:00
|
|
|
workspace(name = "com_google_googletest")
|
2018-01-30 11:42:03 -05:00
|
|
|
|
2018-12-03 14:18:47 -05:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
|
2018-01-30 11:42:03 -05:00
|
|
|
http_archive(
|
2021-05-25 14:50:59 -04:00
|
|
|
name = "com_google_absl",
|
2022-04-26 13:26:45 -07:00
|
|
|
sha256 = "f88c0030547281e8283ff183db61564ff08d3322a8c2e2de4c40e38c03c69aea",
|
|
|
|
strip_prefix = "abseil-cpp-c27ab06897f330267bed99061ed3e523e2606bf1",
|
|
|
|
urls = ["https://github.com/abseil/abseil-cpp/archive/c27ab06897f330267bed99061ed3e523e2606bf1.zip"], # 2022-04-18T19:51:27Z
|
|
|
|
)
|
|
|
|
|
|
|
|
# Note this must use a commit from the `abseil` branch of the RE2 project.
|
|
|
|
# https://github.com/google/re2/tree/abseil
|
|
|
|
http_archive(
|
|
|
|
name = "com_googlesource_code_re2",
|
|
|
|
sha256 = "906d0df8ff48f8d3a00a808827f009a840190f404559f649cb8e4d7143255ef9",
|
|
|
|
strip_prefix = "re2-a276a8c738735a0fe45a6ee590fe2df69bcf4502",
|
|
|
|
urls = ["https://github.com/google/re2/archive/a276a8c738735a0fe45a6ee590fe2df69bcf4502.zip"], # 2022-04-08
|
2018-01-30 11:42:03 -05:00
|
|
|
)
|
2019-08-07 17:04:29 +02:00
|
|
|
|
|
|
|
http_archive(
|
2021-07-19 15:06:36 -04:00
|
|
|
name = "rules_python",
|
|
|
|
sha256 = "98b3c592faea9636ac8444bfd9de7f3fb4c60590932d6e6ac5946e3f8dbd5ff6",
|
|
|
|
strip_prefix = "rules_python-ed6cc8f2c3692a6a7f013ff8bc185ba77eb9b4d2",
|
|
|
|
urls = ["https://github.com/bazelbuild/rules_python/archive/ed6cc8f2c3692a6a7f013ff8bc185ba77eb9b4d2.zip"], # 2021-05-17T00:24:16Z
|
2018-01-30 11:42:03 -05:00
|
|
|
)
|
2022-04-26 13:26:45 -07:00
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "bazel_skylib",
|
|
|
|
urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz"],
|
|
|
|
sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728",
|
|
|
|
)
|
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "platforms",
|
|
|
|
sha256 = "b601beaf841244de5c5a50d2b2eddd34839788000fa1be4260ce6603ca0d8eb7",
|
|
|
|
strip_prefix = "platforms-98939346da932eef0b54cf808622f5bb0928f00b",
|
|
|
|
urls = ["https://github.com/bazelbuild/platforms/archive/98939346da932eef0b54cf808622f5bb0928f00b.zip"],
|
|
|
|
)
|