github.com/tiagovtristao/plz@v13.4.0+incompatible/src/gc/BUILD (about)

     1  go_library(
     2      name = "gc",
     3      srcs = ["gc.go"],
     4      visibility = ["PUBLIC"],
     5      deps = [
     6          "//src/core",
     7          "//src/fs",
     8          "//src/parse/asp",
     9          "//third_party/go:logging",
    10          "//third_party/go:prompter",
    11      ],
    12  )
    13  
    14  go_test(
    15      name = "gc_test",
    16      srcs = ["gc_test.go"],
    17      deps = [
    18          ":gc",
    19          "//third_party/go:testify",
    20      ],
    21  )
    22  
    23  go_test(
    24      name = "rewrite_test",
    25      srcs = ["rewrite_test.go"],
    26      data = [
    27          "test_data",
    28      ],
    29      deps = [
    30          ":gc",
    31          "//third_party/go:testify",
    32      ],
    33  )