-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
28 lines (25 loc) · 935 Bytes
/
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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_cc",
sha256 = "11cb7eee61da48330fa02f110930f0924ebd2058f6f95f3c86020a6c814daae2",
strip_prefix = "rules_cc-991eb349bf648b89f7d039a2602d337c85479534",
urls = [
"https://github.com/bazelbuild/rules_cc/archive/991eb349bf648b89f7d039a2602d337c85479534.tar.gz",
],
)
http_archive(
name = "com_google_googletest",
sha256 = "9dc9157a9a1551ec7a7e43daea9a694a0bb5fb8bec81235d8a1e6ef64c716dcb",
strip_prefix = "googletest-release-1.10.0",
urls = [
"https://github.com/google/googletest/archive/release-1.10.0.tar.gz",
],
)
http_archive(
name = "com_github_google_benchmark",
sha256 = "dccbdab796baa1043f04982147e67bb6e118fe610da2c65f88912d73987e700c",
strip_prefix = "benchmark-1.5.2",
urls = [
"https://github.com/google/benchmark/archive/v1.5.2.tar.gz",
],
)