-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE.bazel
50 lines (41 loc) · 1.27 KB
/
WORKSPACE.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
42
43
44
45
46
47
48
49
50
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "bazel_compile_commands_extractor",
branch = "main",
remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
)
load("@bazel_compile_commands_extractor//:workspace_setup.bzl", "hedron_compile_commands_setup")
hedron_compile_commands_setup()
git_repository(
name = "bazel_build_files",
remote = "https://github.com/Dup4/bazel-build-files.git",
tag = "v0.0.3",
)
git_repository(
name = "gtest",
build_file = "@bazel_build_files//gtest:BUILD.bazel",
remote = "https://github.com/google/googletest.git",
tag = "v1.13.0",
)
git_repository(
name = "google_benchmark",
build_file = "@bazel_build_files//google-benchmark:BUILD.bazel",
remote = "https://github.com/google/benchmark.git",
tag = "v1.7.0",
)
git_repository(
name = "snapshot",
remote = "https://github.com/Dup4/snapshot-cpp.git",
tag = "v0.1.13",
)
git_repository(
name = "rapidjson",
build_file = "@bazel_build_files//rapidjson:BUILD.bazel",
remote = "https://github.com/Tencent/rapidjson.git",
tag = "v1.1.0",
)
git_repository(
name = "result-cpp",
remote = "https://github.com/Dup4/result-cpp.git",
tag = "v0.0.19",
)