gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/tools/xdp/BUILD (about) 1 load("//tools:defs.bzl", "go_binary") 2 3 package( 4 default_applicable_licenses = ["//:license"], 5 licenses = ["notice"], 6 ) 7 8 go_binary( 9 name = "xdp_loader", 10 srcs = [ 11 "main.go", 12 ], 13 pure = True, 14 visibility = ["//:sandbox"], 15 deps = [ 16 "//runsc/flag", 17 "//tools/xdp/cmd", 18 "@com_github_google_subcommands//:go_default_library", 19 ], 20 )