github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/test/benchmarks/tools/BUILD (about)

     1  load("//tools:defs.bzl", "go_library", "go_test")
     2  
     3  package(licenses = ["notice"])
     4  
     5  go_library(
     6      name = "tools",
     7      testonly = 1,
     8      srcs = [
     9          "ab.go",
    10          "fio.go",
    11          "hey.go",
    12          "iperf.go",
    13          "meminfo.go",
    14          "parser_util.go",
    15          "redis.go",
    16          "sysbench.go",
    17          "tools.go",
    18      ],
    19      visibility = ["//:sandbox"],
    20  )
    21  
    22  go_test(
    23      name = "tools_test",
    24      size = "small",
    25      srcs = [
    26          "ab_test.go",
    27          "fio_test.go",
    28          "hey_test.go",
    29          "iperf_test.go",
    30          "meminfo_test.go",
    31          "redis_test.go",
    32          "sysbench_test.go",
    33      ],
    34      library = ":tools",
    35  )