Remove unused build target

The new packetimpact runner no longer requires static linking for posix_server

PiperOrigin-RevId: 418664824
This commit is contained in:
Zeling Feng
2021-12-28 12:42:00 -08:00
committed by gVisor bot
parent e739f982c0
commit 6838e0fe24
+1 -14
View File
@@ -1,26 +1,13 @@
load("//tools:defs.bzl", "cc_binary", "go_library", "grpcpp")
package(
default_visibility = ["//test/packetimpact:__subpackages__"],
licenses = ["notice"],
)
cc_binary(
name = "posix_server",
srcs = ["posix_server.cc"],
linkstatic = 1,
static = True, # This is needed for running in a docker container.
deps = [
grpcpp,
"//test/packetimpact/proto:posix_server_cc_grpc_proto",
"//test/packetimpact/proto:posix_server_cc_proto",
"@com_google_absl//absl/strings:str_format",
],
)
cc_binary(
name = "posix_server_dynamic",
srcs = ["posix_server.cc"],
visibility = ["//test/packetimpact:__subpackages__"],
deps = [
grpcpp,
"//test/packetimpact/proto:posix_server_cc_grpc_proto",