gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/packetimpact/dut/native/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 = "native", 11 testonly = True, 12 srcs = ["main.go"], 13 data = [ 14 "//test/packetimpact/dut:posix_server", 15 ], 16 deps = [ 17 "//pkg/test/testutil", 18 "//test/packetimpact/dut", 19 "//test/packetimpact/dut/linux", 20 "//test/packetimpact/testbench", 21 "@org_golang_x_sys//unix:go_default_library", 22 ], 23 )