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