forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
41 lines (36 loc) · 1.03 KB
/
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
33
34
35
36
37
38
39
40
41
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",
],
exclude = [
"root/**/envoy-dynamic*.yaml",
# 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",
],
}),
)
filegroup(
name = "proto_examples",
srcs = glob(
[
"root/**/*.pb",
],
),
)