-
Notifications
You must be signed in to change notification settings - Fork 14
/
WORKSPACE
39 lines (23 loc) · 1.04 KB
/
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
36
37
38
39
workspace(name = "envoy_gloo")
local_repository(
name = "envoy_build_config",
# Relative paths are also supported.
path = "bazel/extensions",
)
load("//bazel:repositories.bzl", "envoy_gloo_dependencies")
envoy_gloo_dependencies()
load("@envoy//bazel:api_binding.bzl", "envoy_api_binding")
envoy_api_binding()
load("@envoy//bazel:api_repositories.bzl", "envoy_api_dependencies")
envoy_api_dependencies()
load("@envoy//bazel:repositories.bzl", "envoy_dependencies")
envoy_dependencies()
load("@envoy//bazel:repositories_extra.bzl", "envoy_dependencies_extra")
# This ignore_root_user_error should be reverted if we ever get off of cloudbuild.
# Currently cloudbuild requires root access in the initial stages of setup
# https://github.com/GoogleCloudPlatform/cloud-sdk-docker/issues/214
envoy_dependencies_extra(ignore_root_user_error=True)
load("@envoy//bazel:python_dependencies.bzl", "envoy_python_dependencies")
envoy_python_dependencies()
load("@envoy//bazel:dependency_imports.bzl", "envoy_dependency_imports")
envoy_dependency_imports()