2023-03-16 10:47:38 -07:00
|
|
|
"""Load dependencies needed to use the googletest library as a 3rd-party consumer."""
|
|
|
|
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
2024-02-27 11:53:48 -08:00
|
|
|
load("//:fake_fuchsia_sdk.bzl", "fake_fuchsia_sdk")
|
2023-03-16 10:47:38 -07:00
|
|
|
|
|
|
|
def googletest_deps():
|
|
|
|
"""Loads common dependencies needed to use the googletest library."""
|
|
|
|
|
|
|
|
if not native.existing_rule("com_googlesource_code_re2"):
|
|
|
|
http_archive(
|
2024-01-25 10:27:14 -08:00
|
|
|
name = "com_googlesource_code_re2",
|
|
|
|
sha256 = "828341ad08524618a626167bd320b0c2acc97bd1c28eff693a9ea33a7ed2a85f",
|
|
|
|
strip_prefix = "re2-2023-11-01",
|
|
|
|
urls = ["https://github.com/google/re2/releases/download/2023-11-01/re2-2023-11-01.zip"],
|
2023-03-16 10:47:38 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
if not native.existing_rule("com_google_absl"):
|
|
|
|
http_archive(
|
2024-01-25 10:27:14 -08:00
|
|
|
name = "com_google_absl",
|
|
|
|
sha256 = "338420448b140f0dfd1a1ea3c3ce71b3bc172071f24f4d9a57d59b45037da440",
|
|
|
|
strip_prefix = "abseil-cpp-20240116.0",
|
|
|
|
urls = ["https://github.com/abseil/abseil-cpp/releases/download/20240116.0/abseil-cpp-20240116.0.tar.gz"],
|
2023-03-16 10:47:38 -07:00
|
|
|
)
|
2024-02-27 11:53:48 -08:00
|
|
|
|
|
|
|
if not native.existing_rule("fuchsia_sdk"):
|
|
|
|
fake_fuchsia_sdk(
|
|
|
|
name = "fuchsia_sdk",
|
|
|
|
)
|