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

     1  genrule(
     2      name = 'build',
     3      srcs = ['fuzz.go'],
     4      outs = ['fuzz.zip'],
     5      cmd = 'export GOPATH=$TMP_DIR:$TMP_DIR/third_party/go; $TOOL -o $OUT parse/asp/fuzz',
     6      labels = ['manual'],  # This is really quite slow to compile and has poor incrementality.
     7      needs_transitive_deps = True,
     8      requires = [
     9          'go',
    10          'go_src',
    11      ],
    12      tools = ['//third_party/go:go-fuzz-build'],
    13      deps = [
    14          '//src/core',
    15          '//src/parse/asp',
    16          '//src/parse/rules',
    17          '//third_party/go:go-fuzz-dep',
    18      ],
    19  )