github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/test/image/BUILD (about) 1 load("//tools:defs.bzl", "go_library", "go_test") 2 3 package(licenses = ["notice"]) 4 5 go_test( 6 name = "image_test", 7 size = "large", 8 srcs = [ 9 "image_test.go", 10 ], 11 data = [ 12 "latin10k.txt", 13 "mysql.sql", 14 "ruby.rb", 15 "ruby.sh", 16 ], 17 library = ":image", 18 tags = [ 19 # Requires docker and runsc to be configured before the test runs. 20 "manual", 21 "local", 22 ], 23 visibility = ["//:sandbox"], 24 deps = [ 25 "//pkg/test/dockerutil", 26 "//pkg/test/testutil", 27 ], 28 ) 29 30 go_library( 31 name = "image", 32 srcs = ["image.go"], 33 )