1workspace(name = "com_google_emboss") 2 3load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") 4load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") 5 6# googletest 7git_repository( 8 name = "com_google_googletest", 9 commit = "2f2e72bae991138cedd0e3d06a115022736cd568", 10 remote = "https://github.com/google/googletest", 11 shallow_since = "1563302555 -0400", 12) 13 14git_repository( 15 name = "com_google_absl", 16 commit = "3020b58f0d987073b8adab204426f82c3f60b283", 17 remote = "https://github.com/abseil/abseil-cpp", 18 shallow_since = "1562769772 +0000", 19) 20 21http_archive( 22 name = "bazel_skylib", 23 sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728", 24 urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz"], 25) 26 27http_archive( 28 name = "rules_python", 29 sha256 = "c68bdc4fbec25de5b5493b8819cfc877c4ea299c0dcb15c244c5a00208cde311", 30 strip_prefix = "rules_python-0.31.0", 31 url = "https://github.com/bazelbuild/rules_python/releases/download/0.31.0/rules_python-0.31.0.tar.gz", 32) 33 34load("@rules_python//python:repositories.bzl", "py_repositories") 35 36py_repositories() 37