-
Notifications
You must be signed in to change notification settings - Fork 6
/
WORKSPACE
44 lines (29 loc) · 1.45 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
40
41
42
43
44
workspace(name = "envoy_proxy")
#######################################################################################
# 不要轻易修改 WORKSPACE 文件中命令顺序以及内容,以免影响到最终工程构建 #
# Do not easily modify the order and content of commands in the WORKSPACE file, #
# so as not to affect the final project construction #
#######################################################################################
local_repository(
name = "envoy_build_config",
path = "bazel/extensions_build_config",
)
######################################## Envoy ########################################
local_repository(
name = "envoy",
path = "envoy",
)
##################################### Envoy Proxy ###################################
load("//bazel:repositories.bzl", "envoy_proxy_dependencies")
envoy_proxy_dependencies()
##################################### Deps of Envoy ###################################
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")
envoy_dependencies_extra()
load("@envoy//bazel:dependency_imports.bzl", "envoy_dependency_imports")
envoy_dependency_imports()