github.phpd.cn/thought-machine/please@v12.2.0+incompatible/src/query/BUILD (about)

     1  go_library(
     2      name = 'query',
     3      srcs = glob(['*.go'], exclude = ['*_test.go']),
     4      deps = [
     5          '//src/build',
     6          '//src/core',
     7          '//src/utils',
     8          '//third_party/go:logging',
     9          '//third_party/go:shlex',
    10      ],
    11      visibility = ['PUBLIC'],
    12  )
    13  
    14  go_test(
    15      name = 'print_test',
    16      srcs = ['print_test.go'],
    17      deps = [
    18          ':query',
    19          '//src/core',
    20          '//third_party/go:testify',
    21      ],
    22  )
    23  
    24  go_test(
    25      name = 'graph_test',
    26      srcs = ['graph_test.go'],
    27      deps = [
    28          ':query',
    29          '//src/core',
    30          '//third_party/go:testify',
    31      ],
    32  )
    33  
    34  go_test(
    35      name = 'whatoutputs_test',
    36      srcs = ['whatoutputs_test.go'],
    37      deps = [
    38          ':query',
    39          '//src/core',
    40          '//third_party/go:testify',
    41      ],
    42  )
    43  
    44  go_test(
    45      name = 'changes_test',
    46      srcs = ['changes_test.go'],
    47      deps = [
    48          ':query',
    49          '//src/core',
    50          '//third_party/go:testify',
    51      ],
    52  )