github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/runsc/config/BUILD (about) 1 load("//tools:defs.bzl", "go_library", "go_test") 2 3 package(licenses = ["notice"]) 4 5 go_library( 6 name = "config", 7 srcs = [ 8 "config.go", 9 "flags.go", 10 ], 11 visibility = ["//:sandbox"], 12 deps = [ 13 "//pkg/refs", 14 "//pkg/sentry/watchdog", 15 "//pkg/sync", 16 "//runsc/flag", 17 ], 18 ) 19 20 go_test( 21 name = "config_test", 22 size = "small", 23 srcs = [ 24 "config_test.go", 25 ], 26 library = ":config", 27 deps = ["//runsc/flag"], 28 )