Update to gazelle 0.12.0 and run hack/update-bazel.sh

This commit is contained in:
Jeff Grafton
2018-05-15 17:22:27 -07:00
parent e7f1eaf289
commit a725660640
855 changed files with 2949 additions and 6691 deletions

View File

@@ -34,14 +34,8 @@ func (l *Labeler) LibraryLabel(rel string) Label {
return Label{Pkg: rel, Name: config.DefaultLibName}
}
func (l *Labeler) TestLabel(rel string, isXTest bool) Label {
var name string
if isXTest {
name = config.DefaultXTestName
} else {
name = config.DefaultTestName
}
return Label{Pkg: rel, Name: name}
func (l *Labeler) TestLabel(rel string) Label {
return Label{Pkg: rel, Name: config.DefaultTestName}
}
func (l *Labeler) BinaryLabel(rel string) Label {