-
Notifications
You must be signed in to change notification settings - Fork 5
/
MODULE.bazel
41 lines (36 loc) · 1.16 KB
/
MODULE.bazel
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
"""
A C++17 port of the JavaScript pixelmatch library, providing a small pixel-level image comparison library.
To use, add the following to your MODULE.bazel file:
```
bazel_dep(name = "pixelmatch-cpp17", version = "0.0.0")
git_override(
module_name = "pixelmatch-cpp17",
remote = "https://github.com/jwmcglynn/pixematch-cpp17",
)
```
"""
module(name = "pixelmatch-cpp17", repo_name = "pixelmatch-cpp17")
#
# Build dependencies
#
bazel_dep(name = "rules_cc", version = "0.0.13")
#
# Test dependencies
#
bazel_dep(name = "googletest", repo_name = "com_google_gtest", version = "1.15.2", dev_dependency = True)
bazel_dep(name = "stb", version = "0.0.0", dev_dependency = True)
git_override(
module_name = "stb",
remote = "https://github.com/jwmcglynn/rules_stb",
commit = "075e5a470e31e46a7318cc308c79dba205a6b2eb",
)
#
# Fuzzing dependencies
#
bazel_dep(name = "rules_fuzzing", version = "0.0.0", dev_dependency = True)
archive_override(
module_name = "rules_fuzzing",
strip_prefix = "rules_fuzzing-0.5.1",
integrity = "sha256-dyBsVLcfTdUzUSOm/yqOpojspTeNNLSDgRTf9xZSzyY=",
urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v0.5.1.zip"],
)