]> git.feebdaed.xyz Git - 0xmirror/grpc.git/commitdiff
Keep sleuth binary target name
authorYousuk Seung <ysseung@google.com>
Tue, 18 Nov 2025 22:55:47 +0000 (14:55 -0800)
committerCopybara-Service <copybara-worker@google.com>
Tue, 18 Nov 2025 22:59:13 +0000 (14:59 -0800)
PiperOrigin-RevId: 833982212

test/cpp/sleuth/BUILD

index 9670f2b9cdce711206f586602920eb068f9952c7..0e30b7ac6ca32060913b0784cda5c34acc37a424 100644 (file)
@@ -138,7 +138,7 @@ grpc_cc_test(
 )
 
 grpc_cc_library(
-    name = "sleuth",
+    name = "sleuth_lib",
     srcs = ["sleuth.cc"],
     hdrs = ["sleuth.h"],
     external_deps = [
@@ -163,12 +163,12 @@ grpc_cc_binary(
     name = "sleuth.so",
     linkshared = True,
     deps = [
-        ":sleuth",
+        ":sleuth_lib",
     ],
 )
 
 grpc_cc_binary(
-    name = "sleuth_main",
+    name = "sleuth",
     srcs = ["sleuth_main.cc"],
     external_deps = [
         "absl/flags:parse",
@@ -177,7 +177,7 @@ grpc_cc_binary(
         "//bazel:sleuth",
     ],
     deps = [
-        ":sleuth",
+        ":sleuth_lib",
     ],
 )