forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
63 lines (56 loc) · 1.13 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
load(
"//bazel:envoy_build_system.bzl",
"envoy_package",
)
licenses(["notice"]) # Apache 2
envoy_package()
filegroup(
name = "configs",
srcs = glob(
[
"**/*.yaml",
],
exclude = [
"cache/responses.yaml",
"dynamic-config-fs/**/*",
"jaeger-native-tracing/*",
"**/*docker-compose*.yaml",
# Contrib extensions tested over in contrib.
"mysql/*",
"postgres/*",
],
),
)
genrule(
name = "contrib_configs",
srcs = glob(
[
"mysql/*.yaml",
"postgres/*.yaml",
],
exclude = [
"**/*docker-compose*.yaml",
],
),
outs = ["example_configs.tar"],
cmd = (
"$(location //configs:configgen.sh) NO_CONFIGGEN $(@D) $(SRCS)"
),
tools = [
"//configs:configgen.sh",
],
)
filegroup(
name = "certs",
srcs = glob(["_extra_certs/*.pem"]),
)
filegroup(
name = "lua",
srcs = glob(["**/*.lua"]),
)
filegroup(
name = "files",
srcs = glob(["**/*"]) + [
"//examples/wasm-cc:files",
],
)