forked from envoyproxy/nighthawk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
63 lines (55 loc) · 1.31 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(
"@envoy//bazel:envoy_build_system.bzl",
"envoy_cc_binary",
"envoy_package",
)
licenses(["notice"]) # Apache 2
envoy_package()
filegroup(
name = "nighthawk",
srcs = [
":nighthawk_adaptive_load_client",
":nighthawk_client",
":nighthawk_output_transform",
":nighthawk_service",
":nighthawk_test_server",
],
)
envoy_cc_binary(
name = "nighthawk_adaptive_load_client",
repository = "@envoy",
deps = [
"//source/exe:adaptive_load_client_entry_lib",
],
)
envoy_cc_binary(
name = "nighthawk_client",
repository = "@envoy",
deps = [
"//source/exe:nighthawk_client_entry_lib",
],
)
envoy_cc_binary(
name = "nighthawk_test_server",
repository = "@envoy",
deps = [
"//source/server:http_dynamic_delay_filter_config",
"//source/server:http_test_server_filter_config",
"//source/server:http_time_tracking_filter_config",
"@envoy//source/exe:envoy_main_entry_lib",
],
)
envoy_cc_binary(
name = "nighthawk_service",
repository = "@envoy",
deps = [
"//source/exe:nighthawk_service_entry_lib",
],
)
envoy_cc_binary(
name = "nighthawk_output_transform",
repository = "@envoy",
deps = [
"//source/exe:output_transform_main_entry_lib",
],
)