github.com/sercand/please@v13.4.0+incompatible/src/build/BUILD (about)

     1  go_library(
     2      name = "build",
     3      srcs = glob(
     4          ["*.go"],
     5          exclude = ["*_test.go"],
     6      ),
     7      visibility = ["PUBLIC"],
     8      deps = [
     9          "//src/cache",
    10          "//src/core",
    11          "//src/fs",
    12          "//src/metrics",
    13          "//src/worker",
    14          "//third_party/go:go-multierror",
    15          "//third_party/go:logging",
    16          "//third_party/go:protobuf",
    17          "//third_party/go:shlex",
    18          "//third_party/go:xattr",
    19      ],
    20  )
    21  
    22  go_test(
    23      name = "command_replacements_test",
    24      srcs = ["command_replacements_test.go"],
    25      deps = [
    26          ":build",
    27          "//third_party/go:testify",
    28      ],
    29  )
    30  
    31  go_test(
    32      name = "incrementality_test",
    33      srcs = ["incrementality_test.go"],
    34      deps = [
    35          ":build",
    36      ],
    37  )
    38  
    39  go_test(
    40      name = "build_step_test",
    41      srcs = ["build_step_test.go"],
    42      data = ["test_data"],
    43      deps = [
    44          ":build",
    45          "//src/core",
    46          "//src/fs",
    47          "//src/output",
    48          "//third_party/go:testify",
    49      ],
    50  )
    51  
    52  go_test(
    53      name = "build_step_stress_test",
    54      srcs = ["build_step_stress_test.go"],
    55      deps = [
    56          ":build",
    57          "//src/core",
    58          "//src/output",
    59          "//third_party/go:testify",
    60      ],
    61  )