github.com/distbuild/reclient@v0.0.0-20240401075343-3de72e395564/internal/pkg/inputprocessor/action/clanglint/BUILD.bazel (about) 1 load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3 go_library( 4 name = "clanglint", 5 srcs = ["preprocessor.go"], 6 importpath = "github.com/bazelbuild/reclient/internal/pkg/inputprocessor/action/clanglint", 7 visibility = ["//:__subpackages__"], 8 deps = [ 9 "//internal/pkg/inputprocessor/action/cppcompile", 10 "//internal/pkg/inputprocessor/flags", 11 "@com_github_bazelbuild_remote_apis_sdks//go/pkg/cache", 12 "@com_github_bazelbuild_remote_apis_sdks//go/pkg/command", 13 "@com_github_golang_glog//:glog", 14 ], 15 ) 16 17 go_test( 18 name = "clanglint_test", 19 srcs = ["preprocessor_test.go"], 20 embed = [":clanglint"], 21 deps = [ 22 "//api/scandeps", 23 "//internal/pkg/inputprocessor", 24 "//internal/pkg/inputprocessor/action/cppcompile", 25 "@com_github_bazelbuild_remote_apis_sdks//go/pkg/command", 26 "@com_github_google_go_cmp//cmp", 27 ], 28 )