-
Notifications
You must be signed in to change notification settings - Fork 11
/
WORKSPACE
45 lines (35 loc) · 1.5 KB
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
workspace(name = "rules_m4")
load("@rules_m4//m4:m4.bzl", "m4_register_toolchains", "m4_repository")
# buildifier: disable=bzl-visibility
load("@rules_m4//m4/internal:testutil.bzl", "rules_m4_testutil")
# buildifier: disable=bzl-visibility
load("@rules_m4//m4/internal:versions.bzl", "VERSION_URLS")
rules_m4_testutil(name = "rules_m4_testutil")
m4_register_toolchains()
[m4_repository(
name = "m4_v" + version,
version = version,
) for version in VERSION_URLS]
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_google_googletest",
sha256 = "81964fe578e9bd7c94dfdb09c8e4d6e6759e19967e397dbea48d1c10e45d0df2",
strip_prefix = "googletest-release-1.12.1",
urls = ["https://github.com/google/googletest/archive/release-1.12.1.tar.gz"],
)
http_archive(
name = "bazel_skylib",
sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
],
)
http_archive(
name = "io_bazel_stardoc",
sha256 = "3fd8fec4ddec3c670bd810904e2e33170bedfe12f90adf943508184be458c8bb",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
"https://github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
],
)