WORKSPACE 600 B

1234567891011121314151617181920212223
  1. workspace(name = "com_google_googletest")
  2. load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
  3. # Abseil
  4. http_archive(
  5. name = "com_google_absl",
  6. urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"],
  7. strip_prefix = "abseil-cpp-master",
  8. )
  9. http_archive(
  10. name = "rules_cc",
  11. strip_prefix = "rules_cc-master",
  12. urls = ["https://github.com/bazelbuild/rules_cc/archive/master.zip"],
  13. )
  14. http_archive(
  15. name = "rules_python",
  16. strip_prefix = "rules_python-master",
  17. urls = ["https://github.com/bazelbuild/rules_python/archive/master.zip"],
  18. )