-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathBUILD
More file actions
78 lines (73 loc) · 2.68 KB
/
BUILD
File metadata and controls
78 lines (73 loc) · 2.68 KB
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
load(
"@envoy//bazel:envoy_build_system.bzl",
"envoy_cc_library",
"envoy_package",
)
load("@envoy_api//bazel:api_build_system.bzl", "api_cc_py_proto_library")
licenses(["notice"]) # Apache 2
envoy_package()
envoy_cc_library(
name = "request_options_list_plugin_impl",
srcs = [
"request_options_list_plugin_impl.cc",
],
hdrs = [
"request_options_list_plugin_impl.h",
],
repository = "@envoy",
visibility = ["//visibility:public"],
deps = [
"//include/nighthawk/request_source:request_source_plugin_config_factory_lib",
"//source/common:nighthawk_common_lib",
"//source/common:request_impl_lib",
"//source/common:request_source_impl_lib",
"@envoy//source/common/common:thread_lib_with_external_headers",
"@envoy//source/common/protobuf:message_validator_lib_with_external_headers",
"@envoy//source/common/protobuf:protobuf_with_external_headers",
"@envoy//source/common/protobuf:utility_lib_with_external_headers",
"@envoy//source/exe:platform_header_lib_with_external_headers",
"@envoy//source/exe:platform_impl_lib",
],
)
api_cc_py_proto_library(
name = "llm_request_source_plugin",
srcs = [
"llm_request_source_plugin.proto",
],
visibility = ["//visibility:public"],
deps = [
"//api/client:base",
],
)
envoy_cc_library(
name = "llm_request_source_plugin_impl",
srcs = [
"llm_request_source_plugin_impl.cc",
],
hdrs = [
"llm_request_source_plugin_impl.h",
],
repository = "@envoy",
visibility = ["//visibility:public"],
deps = [
":llm_request_source_plugin_cc_proto",
"//include/nighthawk/request_source:request_source_plugin_config_factory_lib",
"//source/common:nighthawk_common_lib",
"//source/common:request_impl_lib",
"//source/common:request_source_impl_lib",
"@com_google_absl//absl/log",
"@com_google_absl//absl/log:check",
"@com_google_absl//absl/random",
"@com_google_absl//absl/status",
"@com_google_absl//absl/status:statusor",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/strings:str_format",
"@com_google_absl//absl/strings:string_view",
"@envoy//source/common/common:thread_lib_with_external_headers",
"@envoy//source/common/protobuf:message_validator_lib_with_external_headers",
"@envoy//source/common/protobuf:protobuf_with_external_headers",
"@envoy//source/common/protobuf:utility_lib_with_external_headers",
"@envoy//source/exe:platform_header_lib_with_external_headers",
"@envoy//source/exe:platform_impl_lib",
],
)