forked from google/jsonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
35 lines (28 loc) · 858 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
29
30
31
32
33
34
35
workspace(name = "jsonnet")
# This local_repository looks silly but it makes io_bazel_rules_jsonnet use
# _this_ jsonnet, not another downloaded copy.
local_repository(
name = "jsonnet",
path = ".",
)
git_repository(
name = "io_bazel_rules_jsonnet",
commit = "4ef65ef89335fca9d105515053af083f8bd54965",
remote = "https://github.com/bazelbuild/rules_jsonnet.git",
)
new_git_repository(
name = "com_google_googletest",
remote = "https://github.com/google/googletest.git",
tag = "release-1.8.0",
build_file = "gmock.BUILD",
)
bind(
name = "googletest",
actual = "@com_google_googletest//:googletest_no_main",
)
bind(
name = "googletest_main",
actual = "@com_google_googletest//:googletest",
)
load("//tools/build_defs:python_repo.bzl", "python_interpreter")
python_interpreter(name = "default_python")