gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/image/BUILD (about)

     1  load("//tools:defs.bzl", "go_library", "go_test")
     2  
     3  package(
     4      default_applicable_licenses = ["//:license"],
     5      licenses = ["notice"],
     6  )
     7  
     8  go_test(
     9      name = "image_test",
    10      size = "large",
    11      srcs = [
    12          "image_test.go",
    13      ],
    14      data = [
    15          "latin10k.txt",
    16          "mysql.sql",
    17          "ruby.rb",
    18          "ruby.sh",
    19      ],
    20      library = ":image",
    21      tags = [
    22          # Requires docker and runsc to be configured before the test runs.
    23          "manual",
    24          "local",
    25      ],
    26      visibility = ["//:sandbox"],
    27      deps = [
    28          "//pkg/test/dockerutil",
    29          "//pkg/test/testutil",
    30          "@com_github_docker_docker//api/types/mount:go_default_library",
    31      ],
    32  )
    33  
    34  go_library(
    35      name = "image",
    36      srcs = ["image.go"],
    37  )