WORKSPACE 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. workspace(name = "com_google_absl")
  17. load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
  18. # GoogleTest/GoogleMock framework. Used by most unit-tests.
  19. http_archive(
  20. name = "com_google_googletest", # 2021-07-09T13:28:13Z
  21. sha256 = "12ef65654dc01ab40f6f33f9d02c04f2097d2cd9fbe48dc6001b29543583b0ad",
  22. strip_prefix = "googletest-8d51ffdfab10b3fba636ae69bc03da4b54f8c235",
  23. # Keep this URL in sync with ABSL_GOOGLETEST_COMMIT in ci/cmake_common.sh.
  24. urls = ["https://github.com/google/googletest/archive/8d51ffdfab10b3fba636ae69bc03da4b54f8c235.zip"],
  25. )
  26. # Google benchmark.
  27. http_archive(
  28. name = "com_github_google_benchmark", # 2021-09-20T09:19:51Z
  29. sha256 = "62e2f2e6d8a744d67e4bbc212fcfd06647080de4253c97ad5c6749e09faf2cb0",
  30. strip_prefix = "benchmark-0baacde3618ca617da95375e0af13ce1baadea47",
  31. urls = ["https://github.com/google/benchmark/archive/0baacde3618ca617da95375e0af13ce1baadea47.zip"],
  32. )
  33. # Bazel platform rules.
  34. http_archive(
  35. name = "platforms",
  36. sha256 = "b601beaf841244de5c5a50d2b2eddd34839788000fa1be4260ce6603ca0d8eb7",
  37. strip_prefix = "platforms-98939346da932eef0b54cf808622f5bb0928f00b",
  38. urls = ["https://github.com/bazelbuild/platforms/archive/98939346da932eef0b54cf808622f5bb0928f00b.zip"],
  39. )