| # |
| # Copyright 2019 The Abseil Authors. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| |
| workspace(name = "com_google_absl") |
| |
| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| |
| # GoogleTest/GoogleMock framework. Used by most unit-tests. |
| http_archive( |
| name = "com_google_googletest", # 2023-02-28T13:15:29Z |
| sha256 = "82ad62a4e26c199de52a707778334e80f6b195dd298d48d520d8507d2bcb88c4", |
| strip_prefix = "googletest-2d4f208765af7fa376b878860a7677ecc0bc390a", |
| # Keep this URL in sync with ABSL_GOOGLETEST_COMMIT in ci/cmake_common.sh. |
| urls = ["https://github.com/google/googletest/archive/2d4f208765af7fa376b878860a7677ecc0bc390a.zip"], |
| ) |
| |
| # RE2 (the regular expression library used by GoogleTest) |
| http_archive( |
| name = "com_googlesource_code_re2", |
| sha256 = "1726508efc93a50854c92e3f7ac66eb28f0e57652e413f11d7c1e28f97d997ba", |
| strip_prefix = "re2-03da4fc0857c285e3a26782f6bc8931c4c950df4", |
| urls = ["https://github.com/google/re2/archive/03da4fc0857c285e3a26782f6bc8931c4c950df4.zip"], # 2023-06-01 |
| ) |
| |
| # Google benchmark. |
| http_archive( |
| name = "com_github_google_benchmark", # 2023-01-10T16:48:17Z |
| sha256 = "ede6830512f21490eeea1f238f083702eb178890820c14451c1c3d69fd375b19", |
| strip_prefix = "benchmark-a3235d7b69c84e8c9ff8722a22b8ac5e1bc716a6", |
| urls = ["https://github.com/google/benchmark/archive/a3235d7b69c84e8c9ff8722a22b8ac5e1bc716a6.zip"], |
| ) |
| |
| # Bazel Skylib. |
| http_archive( |
| name = "bazel_skylib", # 2022-11-16T18:29:32Z |
| sha256 = "a22290c26d29d3ecca286466f7f295ac6cbe32c0a9da3a91176a90e0725e3649", |
| strip_prefix = "bazel-skylib-5bfcb1a684550626ce138fe0fe8f5f702b3764c3", |
| urls = ["https://github.com/bazelbuild/bazel-skylib/archive/5bfcb1a684550626ce138fe0fe8f5f702b3764c3.zip"], |
| ) |
| |
| # Bazel platform rules. |
| http_archive( |
| name = "platforms", # 2022-11-09T19:18:22Z |
| sha256 = "b4a3b45dc4202e2b3e34e3bc49d2b5b37295fc23ea58d88fb9e01f3642ad9b55", |
| strip_prefix = "platforms-3fbc687756043fb58a407c2ea8c944bc2fe1d922", |
| urls = ["https://github.com/bazelbuild/platforms/archive/3fbc687756043fb58a407c2ea8c944bc2fe1d922.zip"], |
| ) |