-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWORKSPACE
23 lines (19 loc) · 849 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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_grail_bazel_compdb",
build_file = "//build_tools:compdb.BUILD.bazel",
strip_prefix = "bazel-compilation-database-0.4.2",
url = "https://github.com/grailbio/bazel-compilation-database/archive/0.4.2.tar.gz",
)
http_archive(
name = "gtest",
build_file = "//third_party:gtest.BUILD.bazel",
sha256 = "9dc9157a9a1551ec7a7e43daea9a694a0bb5fb8bec81235d8a1e6ef64c716dcb",
strip_prefix = "googletest-release-1.10.0",
url = "https://github.com/google/googletest/archive/release-1.10.0.tar.gz",
)
http_archive(
name = "rules_python",
sha256 = "b6d46438523a3ec0f3cead544190ee13223a52f6a6765a29eae7b7cc24cc83a0",
url = "https://github.com/bazelbuild/rules_python/releases/download/0.1.0/rules_python-0.1.0.tar.gz",
)