-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWORKSPACE
More file actions
27 lines (15 loc) · 776 Bytes
/
WORKSPACE
File metadata and controls
27 lines (15 loc) · 776 Bytes
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
workspace(name = "envoy")
load("//bazel:api_binding.bzl", "envoy_api_binding")
envoy_api_binding()
load("//bazel:api_repositories.bzl", "envoy_api_dependencies")
envoy_api_dependencies()
load("//bazel:repositories.bzl", "envoy_dependencies")
envoy_dependencies()
load("//bazel:repositories_extra.bzl", "envoy_dependencies_extra")
# Bazel's `rules_python` fails when run as root. There are cases when we have to run Python targets
# with root (i.e. in Docker containers) requiring setting `ignore_root_user_error=True`.
envoy_dependencies_extra(ignore_root_user_error=True)
load("//bazel:python_dependencies.bzl", "envoy_python_dependencies")
envoy_python_dependencies()
load("//bazel:dependency_imports.bzl", "envoy_dependency_imports")
envoy_dependency_imports()