forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
69 lines (61 loc) · 1.56 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
64
65
66
67
68
69
load(
"//bazel:envoy_build_system.bzl",
"envoy_cc_library",
"envoy_package",
)
licenses(["notice"]) # Apache 2
envoy_package()
envoy_cc_library(
name = "exact_map_matcher_lib",
hdrs = ["exact_map_matcher.h"],
deps = [
"//include/envoy/matcher:matcher_interface",
],
)
envoy_cc_library(
name = "value_input_matcher_lib",
hdrs = ["value_input_matcher.h"],
deps = [
"//include/envoy/matcher:matcher_interface",
"//source/common/common:matchers_lib",
],
)
envoy_cc_library(
name = "validation_visitor_lib",
hdrs = ["validation_visitor.h"],
deps = [
"//include/envoy/matcher:matcher_interface",
],
)
envoy_cc_library(
name = "list_matcher_lib",
hdrs = ["list_matcher.h"],
deps = [
":field_matcher_lib",
"//include/envoy/matcher:matcher_interface",
],
)
envoy_cc_library(
name = "field_matcher_lib",
hdrs = ["field_matcher.h"],
deps = [
"//include/envoy/matcher:matcher_interface",
],
)
envoy_cc_library(
name = "matcher_lib",
srcs = ["matcher.cc"],
hdrs = ["matcher.h"],
deps = [
":exact_map_matcher_lib",
":field_matcher_lib",
":list_matcher_lib",
":validation_visitor_lib",
":value_input_matcher_lib",
"//include/envoy/config:typed_config_interface",
"//include/envoy/matcher:matcher_interface",
"//source/common/config:utility_lib",
"@envoy_api//envoy/config/common/matcher/v3:pkg_cc_proto",
"@envoy_api//envoy/config/core/v3:pkg_cc_proto",
],
)