-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathBUILD
99 lines (88 loc) · 2.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
load(
"//bazel:envoy_build_system.bzl",
"envoy_cc_library",
"envoy_package",
)
licenses(["notice"]) # Apache 2
envoy_package()
envoy_cc_library(
name = "connection_interface",
hdrs = [
"connection.h",
"parsed_x509_name.h",
],
deps = [
":ssl_socket_state",
"//envoy/common:optref_lib",
"//envoy/common:time_interface",
"@com_google_absl//absl/types:optional",
],
)
envoy_cc_library(
name = "context_interface",
hdrs = ["context.h"],
deps = [
"//source/common/network:cidr_range_interface",
"@envoy_api//envoy/admin/v3:pkg_cc_proto",
],
)
envoy_cc_library(
name = "context_config_interface",
hdrs = ["context_config.h"],
deps = [
":certificate_validation_context_config_interface",
":handshaker_interface",
":tls_certificate_config_interface",
"//source/common/network:cidr_range_interface",
],
)
envoy_cc_library(
name = "context_manager_interface",
hdrs = ["context_manager.h"],
deps = [
":context_config_interface",
":context_interface",
"//envoy/common:time_interface",
"//envoy/config:typed_config_interface",
"//envoy/stats:stats_interface",
],
)
envoy_cc_library(
name = "tls_certificate_config_interface",
hdrs = ["tls_certificate_config.h"],
deps = [
"//envoy/ssl/private_key:private_key_interface",
],
)
envoy_cc_library(
name = "certificate_validation_context_config_interface",
hdrs = ["certificate_validation_context_config.h"],
deps = [
"@com_google_absl//absl/types:optional",
"@envoy_api//envoy/extensions/transport_sockets/tls/v3:pkg_cc_proto",
"@envoy_api//envoy/type/matcher/v3:pkg_cc_proto",
],
)
envoy_cc_library(
name = "ssl_socket_extended_info_interface",
hdrs = ["ssl_socket_extended_info.h"],
)
envoy_cc_library(
name = "ssl_socket_state",
hdrs = ["ssl_socket_state.h"],
)
envoy_cc_library(
name = "handshaker_interface",
hdrs = ["handshaker.h"],
external_deps = ["ssl"],
deps = [
"//envoy/api:api_interface",
"//envoy/config:typed_config_interface",
"//envoy/network:connection_interface",
"//envoy/network:post_io_action_interface",
"//envoy/protobuf:message_validator_interface",
"//envoy/server:lifecycle_notifier_interface",
"//envoy/server:options_interface",
"//envoy/singleton:manager_interface",
],
)