forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathBUILD
28 lines (23 loc) · 870 Bytes
/
BUILD
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
load(
"//bazel:envoy_build_system.bzl",
"envoy_package",
)
licenses(["notice"]) # Apache 2
exports_files(["protodoc_manifest.yaml"])
envoy_package()
# TODO(phlax): fix failing/excluded configs
# the following config only fails on windows:
# dns-cache-circuit-breaker: "Error: unable to read file: /etc/ssl/certs/ca-certificates.crt"
filegroup(
name = "configs",
srcs = glob(
["root/**/*.yaml"],
exclude = [
"root/intro/_include/life-of-a-request.yaml",
"root/intro/arch_overview/security/_include/ssl.yaml",
"root/configuration/http/http_filters/_include/dns-cache-circuit-breaker.yaml",
"root/configuration/http/http_filters/_include/grpc-reverse-bridge-filter.yaml",
"root/configuration/http/http_filters/_include/grpc-transcoder-filter.yaml",
],
),
)