gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/packetimpact/dut/runsc/BUILD (about)

     1  load("//tools:defs.bzl", "go_binary")
     2  
     3  package(
     4      default_applicable_licenses = ["//:license"],
     5      default_visibility = ["//test/packetimpact:__subpackages__"],
     6      licenses = ["notice"],
     7  )
     8  
     9  go_binary(
    10      name = "runsc",
    11      testonly = True,
    12      srcs = ["main.go"],
    13      data = [
    14          ":devid",
    15          "//runsc",
    16          "//test/packetimpact/dut:posix_server",
    17      ],
    18      deps = [
    19          "//pkg/test/testutil",
    20          "//test/packetimpact/dut",
    21          "//test/packetimpact/dut/linux",
    22          "//test/packetimpact/internal/testing",
    23          "//test/packetimpact/testbench",
    24          "@com_github_opencontainers_runtime_spec//specs-go:go_default_library",
    25          "@org_golang_x_sys//unix:go_default_library",
    26      ],
    27  )
    28  
    29  go_binary(
    30      name = "devid",
    31      testonly = True,
    32      srcs = ["devid.go"],
    33  )