From: Vignesh Babu Date: Fri, 19 Dec 2025 21:58:47 +0000 (-0800) Subject: [Build Fix] grpc/core/master/linux/grpc_flaky_network (#41272) X-Git-Url: https://git.feebdaed.xyz/?a=commitdiff_plain;h=7d2ad5df80a3585e12e70526e93bef8be2bd6747;p=0xmirror%2Fgrpc.git [Build Fix] grpc/core/master/linux/grpc_flaky_network (#41272) Should fix build failure: https://btx.cloud.google.com/invocations/0a1f31fb-d340-4ff5-af2c-25543f19068e/log Closes #41272 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/41272 from Vignesh2208:cbf 28a57fb83eebedce3353f59a8a0c528b58c8c24e PiperOrigin-RevId: 846857224 --- diff --git a/test/cpp/end2end/BUILD b/test/cpp/end2end/BUILD index e12b1e2770..6c88fdcbb6 100644 --- a/test/cpp/end2end/BUILD +++ b/test/cpp/end2end/BUILD @@ -1090,6 +1090,8 @@ grpc_cc_test( name = "flaky_network_test", srcs = ["flaky_network_test.cc"], external_deps = [ + "absl/memory", + "absl/log", "gtest", ], tags = [ @@ -1104,9 +1106,11 @@ grpc_cc_test( ], deps = [ ":test_service_impl", + "//:backoff", "//:gpr", "//:grpc", "//:grpc++", + "//src/core:env", "//src/proto/grpc/testing:echo_cc_grpc", "//src/proto/grpc/testing:echo_messages_cc_proto", "//test/core/test_util:grpc_test_util",