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