blob: 90179b8082925d04e082b749098fdf3728459807 [file] [log] [blame]
Ben Olmsteadc0d77842019-07-31 17:34:05 -07001workspace(name = "com_google_emboss")
2
Ben Olmsteadc0d77842019-07-31 17:34:05 -07003load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
Ted Pudlik4a044db2024-04-10 15:56:42 -07004load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
Ben Olmsteadc0d77842019-07-31 17:34:05 -07005
6# googletest
7git_repository(
8 name = "com_google_googletest",
reventlov9da7c5d2023-02-03 14:27:13 -08009 commit = "2f2e72bae991138cedd0e3d06a115022736cd568",
Ted Pudlik4a044db2024-04-10 15:56:42 -070010 remote = "https://github.com/google/googletest",
Ben Olmsteadc0d77842019-07-31 17:34:05 -070011 shallow_since = "1563302555 -0400",
12)
13
14git_repository(
15 name = "com_google_absl",
reventlov9da7c5d2023-02-03 14:27:13 -080016 commit = "3020b58f0d987073b8adab204426f82c3f60b283",
Ted Pudlik4a044db2024-04-10 15:56:42 -070017 remote = "https://github.com/abseil/abseil-cpp",
Ben Olmsteadc0d77842019-07-31 17:34:05 -070018 shallow_since = "1562769772 +0000",
19)
reventlov9da7c5d2023-02-03 14:27:13 -080020
21http_archive(
Ted Pudlik4a044db2024-04-10 15:56:42 -070022 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"],
reventlov9da7c5d2023-02-03 14:27:13 -080025)
Ted Pudlik4a044db2024-04-10 15:56:42 -070026
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()