Skip to content

Commit

Permalink
Fix the NO_HTTP3_SKIP_TARGETS variable (envoyproxy#35765)
Browse files Browse the repository at this point in the history
Fix the NO_HTTP3_SKIP_TARGETS variable

Signed-off-by: JACQUES Francois <[email protected]>
  • Loading branch information
hypnoce authored Aug 22, 2024
1 parent e2a273f commit 5d82cb6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ NO_HTTP3_SKIP_TARGETS = [
"envoy.quic.deterministic_connection_id_generator",
"envoy.quic.proof_source.filter_chain",
"envoy.quic.server_preferred_address.fixed",
"envoy.quic.server_preferred_address.datasource",
"envoy.quic.connection_debug_visitor.basic",
]

# Make all contents of an external repository accessible under a filegroup. Used for external HTTP
Expand Down
1 change: 1 addition & 0 deletions source/exe/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ envoy_cc_library(
"//bazel:enable_http3_on_linux_ppc": envoy_all_extensions(PPC_SKIP_TARGETS),
"//bazel:disable_http3_on_windows_x86_64": envoy_all_extensions(NO_HTTP3_SKIP_TARGETS + WINDOWS_SKIP_TARGETS),
"//bazel:disable_http3_on_linux_ppc": envoy_all_extensions(NO_HTTP3_SKIP_TARGETS + PPC_SKIP_TARGETS),
"//bazel:disable_http3": envoy_all_extensions(NO_HTTP3_SKIP_TARGETS),
"//conditions:default": envoy_all_extensions(),
}),
)
Expand Down
1 change: 1 addition & 0 deletions test/config_test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ envoy_cc_test_library(
"//bazel:enable_http3_on_linux_ppc": envoy_all_extensions(PPC_SKIP_TARGETS),
"//bazel:disable_http3_on_windows_x86_64": envoy_all_extensions(NO_HTTP3_SKIP_TARGETS + WINDOWS_SKIP_TARGETS),
"//bazel:disable_http3_on_linux_ppc": envoy_all_extensions(NO_HTTP3_SKIP_TARGETS + PPC_SKIP_TARGETS),
"//bazel:disable_http3": envoy_all_extensions(NO_HTTP3_SKIP_TARGETS),
"//conditions:default": envoy_all_extensions(),
}),
)

0 comments on commit 5d82cb6

Please sign in to comment.