forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
30 lines (27 loc) · 899 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
licenses(["notice"]) # Apache 2
load(
"//bazel:envoy_build_system.bzl",
"envoy_package",
)
envoy_package()
filegroup(
name = "configs",
srcs = [
"cors/backend/front-envoy.yaml",
"cors/backend/service-envoy.yaml",
"cors/frontend/front-envoy.yaml",
"cors/frontend/service-envoy.yaml",
"front-proxy/front-envoy.yaml",
"front-proxy/service-envoy.yaml",
"grpc-bridge/config/s2s-grpc-envoy.yaml",
"grpc-bridge/config/s2s-python-envoy.yaml",
"jaeger-tracing/front-envoy-jaeger.yaml",
"jaeger-tracing/service1-envoy-jaeger.yaml",
"jaeger-tracing/service2-envoy-jaeger.yaml",
"lua/envoy.yaml",
"lua/lib/mylibrary.lua",
"zipkin-tracing/front-envoy-zipkin.yaml",
"zipkin-tracing/service1-envoy-zipkin.yaml",
"zipkin-tracing/service2-envoy-zipkin.yaml",
],
)