-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE.bazel
37 lines (30 loc) · 997 Bytes
/
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
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.1",
)
git_repository(
name = "google_benchmark",
branch = "main",
build_file = "@bazel_build_files//google-benchmark:BUILD.bazel",
remote = "https://github.com/google/benchmark.git",
)
git_repository(
name = "gtest",
branch = "main",
build_file = "@bazel_build_files//gtest:BUILD.bazel",
remote = "https://github.com/google/googletest.git",
)
git_repository(
name = "snapshot",
remote = "https://github.com/Dup4/snapshot-cpp.git",
tag = "v0.1.13",
)