forked from teslamotors/fixed-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
25 lines (21 loc) · 1.09 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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("//:fixed_containers_deps.bzl", "fixed_containers_deps")
fixed_containers_deps()
http_archive(
name = "com_google_googletest",
urls = ["https://github.com/google/googletest/archive/eff443c6ef5eb6ab598bfaae27f9427fdb4f6af7.tar.gz"],
strip_prefix = "googletest-eff443c6ef5eb6ab598bfaae27f9427fdb4f6af7",
sha256 = "59243119d23c19baf18bb4064644e5894b156b15bd0191ea3046db9c4a7ee0ec",
)
http_archive(
name = "com_google_benchmark",
urls = ["https://github.com/google/benchmark/archive/447752540c71f34d5d71046e08192db181e9b02b.tar.gz"],
strip_prefix = "benchmark-447752540c71f34d5d71046e08192db181e9b02b",
sha256 = "df1235e0e37297e990bb833c723cd3dec61fc95c4951f64bdd5c72d1cea7f4f9",
)
http_archive(
name = "com_github_ericniebler_range-v3",
urls = ["https://github.com/ericniebler/range-v3/archive/53c40dd628450c977ee1558285ff43e0613fa7a9.tar.gz"],
strip_prefix = "range-v3-53c40dd628450c977ee1558285ff43e0613fa7a9",
sha256 = "2a3e956cc0174ea883d36c51aded8549af10078558177e8f6d76c5e33de950c1",
)