-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
44 lines (37 loc) · 1.42 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
http_archive(
name = "com_github_gflags_gflags",
strip_prefix = "gflags-e292e0452fcfd5a8ae055b59052fc041cbab4abf",
urls = ["https://github.com/gflags/gflags/archive/e292e0452fcfd5a8ae055b59052fc041cbab4abf.zip"],
)
http_archive(
name = "com_google_absl",
strip_prefix = "abseil-cpp-a7e522daf1ec9cda69b356472f662142dd0c1215",
urls = ["https://github.com/abseil/abseil-cpp/archive/a7e522daf1ec9cda69b356472f662142dd0c1215.zip"],
)
new_http_archive(
name = "com_google_benchmark",
build_file = "cc/benchmark.BUILD",
strip_prefix = "benchmark-1.3.0",
urls = ["https://github.com/google/benchmark/archive/v1.3.0.zip"],
)
http_archive(
name = "com_google_googletest",
strip_prefix = "googletest-master",
urls = ["https://github.com/google/googletest/archive/master.zip"],
)
http_archive(
name = "com_googlesource_code_cctz",
strip_prefix = "cctz-2.2",
urls = ["https://github.com/google/cctz/archive/v2.2.zip"],
)
http_archive(
name = "org_pubref_rules_protobuf",
strip_prefix = "rules_protobuf-0.8.2",
urls = ["https://github.com/pubref/rules_protobuf/archive/v0.8.2.zip"],
)
load("@org_pubref_rules_protobuf//python:rules.bzl", "py_proto_repositories")
load("@org_pubref_rules_protobuf//cpp:rules.bzl", "cpp_proto_repositories")
load ("//cc:cuda_configure.bzl", "cuda_configure")
cpp_proto_repositories()
py_proto_repositories()
cuda_configure(name = "local_config_cuda")