WORKSPACE (2617B)
1 # 2 # Copyright 2019 The Abseil Authors. 3 # 4 # Licensed under the Apache License, Version 2.0 (the "License"); 5 # you may not use this file except in compliance with the License. 6 # You may obtain a copy of the License at 7 # 8 # https://www.apache.org/licenses/LICENSE-2.0 9 # 10 # Unless required by applicable law or agreed to in writing, software 11 # distributed under the License is distributed on an "AS IS" BASIS, 12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 # See the License for the specific language governing permissions and 14 # limitations under the License. 15 # 16 17 workspace(name = "abseil-cpp") 18 19 load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") 20 21 # GoogleTest/GoogleMock framework. Used by most unit-tests. 22 http_archive( 23 name = "googletest", 24 sha256 = "78c676fc63881529bf97bf9d45948d905a66833fbfa5318ea2cd7478cb98f399", 25 strip_prefix = "googletest-1.16.0", 26 # Keep this URL in sync with the version in ci/cmake_common.sh and 27 # ci/windows_msvc_cmake.bat. 28 urls = ["https://github.com/google/googletest/releases/download/v1.16.0/googletest-1.16.0.tar.gz"], 29 ) 30 31 # RE2 (the regular expression library used by GoogleTest) 32 http_archive( 33 name = "re2", 34 sha256 = "eb2df807c781601c14a260a507a5bb4509be1ee626024cb45acbd57cb9d4032b", 35 strip_prefix = "re2-2024-07-02", 36 urls = ["https://github.com/google/re2/releases/download/2024-07-02/re2-2024-07-02.tar.gz"], 37 ) 38 39 # Google benchmark. 40 http_archive( 41 name = "google_benchmark", 42 sha256 = "d26789a2b46d8808a48a4556ee58ccc7c497fcd4c0af9b90197674a81e04798a", 43 strip_prefix = "benchmark-1.8.5", 44 urls = ["https://github.com/google/benchmark/archive/refs/tags/v1.8.5.tar.gz"], 45 ) 46 47 # Bazel Skylib. 48 http_archive( 49 name = "bazel_skylib", 50 sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f", 51 urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz"], 52 ) 53 54 # C++ rules for Bazel 55 http_archive( 56 name = "rules_cc", 57 urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.1.0/rules_cc-0.1.0.tar.gz"], 58 sha256 = "4b12149a041ddfb8306a8fd0e904e39d673552ce82e4296e96fac9cbf0780e59", 59 strip_prefix = "rules_cc-0.1.0", 60 ) 61 62 # Bazel platform rules. 63 http_archive( 64 name = "platforms", 65 urls = [ 66 "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz", 67 "https://github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz", 68 ], 69 sha256 = "218efe8ee736d26a3572663b374a253c012b716d8af0c07e842e82f238a0a7ee", 70 )