-
Notifications
You must be signed in to change notification settings - Fork 18
/
WORKSPACE
82 lines (71 loc) · 2.43 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
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
workspace(name = "hashtable_benchmarks")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# abseil
http_archive(
name = "absl",
strip_prefix = "abseil-cpp-master",
urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"],
)
# Google benchmark.
http_archive(
name = "gbench",
strip_prefix = "benchmark-main",
urls = ["https://github.com/google/benchmark/archive/main.zip"],
)
# Google dense_hash_set
http_archive(
name = "google_sparsehash",
build_file = "//:BUILD.sparsehash",
strip_prefix = "sparsehash-master",
urls = ["https://github.com/google/sparsehash/archive/master.zip"],
)
http_archive(
name = "com_github_gflags_gflags",
strip_prefix = "gflags-master",
urls = ["https://github.com/gflags/gflags/archive/master.zip"],
)
http_archive(
name = "com_github_google_glog",
strip_prefix = "glog-master",
urls = ["https://github.com/google/glog/archive/master.zip"],
)
http_archive(
name = "com_github_google_double_conversion",
build_file = "//:BUILD.double_conversion",
strip_prefix = "double-conversion-master",
urls = ["https://github.com/google/double-conversion/archive/master.zip"],
)
# Facebook folly
http_archive(
name = "facebook_folly",
build_file = "//:BUILD.folly",
strip_prefix = "folly-main",
urls = ["https://github.com/facebook/folly/archive/main.zip"],
)
# ska::flat_hash_set and ska::bytell_hash_set
http_archive(
name = "skarupke",
build_file = "//:BUILD.skarupke",
strip_prefix = "flat_hash_map-master",
urls = ["https://github.com/skarupke/flat_hash_map/archive/master.zip"],
)
http_archive(
name = "com_github_nelhage_rules_boost",
strip_prefix = "rules_boost-master",
urls = ["https://github.com/nelhage/rules_boost/archive/master.zip"],
)
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
boost_deps()