-
Notifications
You must be signed in to change notification settings - Fork 474
Expand file tree
/
Copy pathWORKSPACE
More file actions
34 lines (27 loc) · 1.18 KB
/
WORKSPACE
File metadata and controls
34 lines (27 loc) · 1.18 KB
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
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 GoogleTestCMakeLists.txt.in.
commit = "2fe3bd994b3189899d93f1d5a881e725e046fdc2", # release: release-1.8.1
shallow_since = "1535728917 -0400",
)
git_repository(
name = "com_googlesource_code_re2",
remote = "https://github.com/google/re2.git",
# If updating RE2 version, also update RE2CMakeLists.txt.in.
commit = "5723bb8950318135ed9cf4fc76bed988a087f536", # release: 2022-06-01
shallow_since = "1558525654 +0000",
)
# 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")