forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
32 lines (28 loc) · 919 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
29
30
31
32
load(
"//bazel:envoy_build_system.bzl",
"envoy_package",
)
licenses(["notice"]) # Apache 2
exports_files(["protodoc_manifest.yaml"])
envoy_package()
filegroup(
name = "configs",
srcs = glob(
[
"root/**/*.yaml",
"root/**/*.pb",
],
exclude = [
# TODO(phlax/windows-dev): figure out how to get this working on windows
# "Error: unable to read file: /etc/ssl/certs/ca-certificates.crt"
"root/configuration/http/http_filters/_include/dns-cache-circuit-breaker.yaml",
"root/intro/arch_overview/security/_include/ssl.yaml",
],
) + select({
"//bazel:windows_x86_64": [],
"//conditions:default": [
"root/configuration/http/http_filters/_include/dns-cache-circuit-breaker.yaml",
"root/intro/arch_overview/security/_include/ssl.yaml",
],
}),
)