Skip to content
Merged
13 changes: 4 additions & 9 deletions source/exe/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ envoy_cc_library(
"//source/server:options_lib",
"//source/server:server_lib",
"//source/server:listener_hooks_lib",
"//source/server/config_validation:server_lib",
] + envoy_all_core_extensions() +
# TODO(rojkov): drop io_uring dependency when it's fully integrated.
select({
Expand All @@ -150,25 +149,21 @@ envoy_cc_library(

envoy_cc_library(
name = "envoy_main_common_with_core_extensions_lib",
srcs = [
"main_common.cc",
],
hdrs = [
"main_common.h",
],
srcs = ["main_common.cc"],
hdrs = ["main_common.h"],
deps = [
"//source/server/config_validation:server_lib",

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cc @phlax I think this version should not have passed format checks. Did we lose buildifier on our format checks?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i believe it works the same as it always did

afaict the queue was cancelled before the check was run

it the ./tools/code_format/check_format.py script that runs it i think

":stripped_main_base_lib",
":envoy_common_with_core_extensions_lib",
":platform_impl_lib",
":process_wide_lib",
":stripped_main_base_lib",
"//envoy/server:platform_interface",
"//source/common/api:os_sys_calls_lib",
"//source/common/common:compiler_requirements_lib",
"//source/common/common:perf_annotation_lib",
"//source/common/grpc:google_grpc_context_lib",
"//source/server:hot_restart_lib",
"//source/server:hot_restart_nop_lib",
"//source/server/config_validation:server_lib",
] + select({
"//bazel:disable_signal_trace": [],
"//conditions:default": [
Expand Down