forked from jwmcglynn/pixelmatch-cpp17
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWORKSPACE
46 lines (33 loc) · 1.05 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
46
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
##
## Third-party dependencies.
##
git_repository(
name = "com_google_gtest",
remote = "https://github.com/google/googletest",
tag = "v1.14.0",
)
load("@com_google_gtest//:googletest_deps.bzl", "googletest_deps")
googletest_deps()
git_repository(
name = "stb",
branch = "master",
init_submodules = True,
remote = "https://github.com/nitronoid/rules_stb",
)
##
## Fuzzer dependencies.
##
http_archive(
name = "rules_fuzzing",
sha256 = "ff52ef4845ab00e95d29c02a9e32e9eff4e0a4c9c8a6bcf8407a2f19eb3f9190",
strip_prefix = "rules_fuzzing-0.4.1",
urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v0.4.1.zip"],
)
load("@rules_fuzzing//fuzzing:repositories.bzl", "rules_fuzzing_dependencies")
rules_fuzzing_dependencies()
load("@rules_fuzzing//fuzzing:init.bzl", "rules_fuzzing_init")
rules_fuzzing_init()
load("@fuzzing_py_deps//:requirements.bzl", "install_deps")
install_deps()