forked from google/jsonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
26 lines (20 loc) · 909 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
workspace(name = "jsonnet")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "io_bazel_rules_jsonnet",
commit = "ad2b4204157ddcf7919e8bd210f607f8a801aa7f",
remote = "https://github.com/bazelbuild/rules_jsonnet.git",
shallow_since = "1556260764 +0200",
)
git_repository(
name = "com_google_googletest",
remote = "https://github.com/google/googletest.git",
# If updating googletest version, also update CMakeLists.txt.in.
commit = "2fe3bd994b3189899d93f1d5a881e725e046fdc2", # release: release-1.8.1
shallow_since = "1535728917 -0400",
)
# This allows using py_test and py_library against python3.
register_toolchains("//platform_defs:default_python3_toolchain")
# This allows building C++ against python3 headers.
load("//tools/build_defs:python_repo.bzl", "python_headers")
python_headers(name = "default_python3_headers")