summaryrefslogtreecommitdiffhomepage
path: root/test/packetimpact/dut/BUILD
blob: 0be14ca3efb95a2661460d97789cc1971820280f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
load("//tools:defs.bzl", "cc_binary", "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"],
    deps = [
        grpcpp,
        "//test/packetimpact/proto:posix_server_cc_grpc_proto",
        "//test/packetimpact/proto:posix_server_cc_proto",
        "@com_google_absl//absl/strings:str_format",
    ],
)