generated: bazel

This commit is contained in:
Clayton Coleman 2017-02-23 00:00:25 -05:00
parent 4e24e82b13
commit a5d29ac5dd
No known key found for this signature in database
GPG Key ID: 3D16906B4F1C5CB3

24
vendor/BUILD vendored
View File

@ -5166,6 +5166,7 @@ go_library(
"//vendor:github.com/onsi/ginkgo/ginkgo/testrunner",
"//vendor:github.com/onsi/ginkgo/ginkgo/testsuite",
"//vendor:github.com/onsi/ginkgo/ginkgo/watch",
"//vendor:github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable",
"//vendor:github.com/onsi/ginkgo/types",
],
)
@ -5391,7 +5392,10 @@ go_library(
"github.com/onsi/ginkgo/reporters/stenographer/stenographer.go",
],
tags = ["automanaged"],
deps = ["//vendor:github.com/onsi/ginkgo/types"],
deps = [
"//vendor:github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable",
"//vendor:github.com/onsi/ginkgo/types",
],
)
go_library(
@ -17125,3 +17129,21 @@ go_test(
library = ":k8s.io/apimachinery/pkg/apis/meta/v1/unstructured",
tags = ["automanaged"],
)
go_library(
name = "github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable",
srcs = [
"github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/colorable_others.go",
"github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/noncolorable.go",
],
tags = ["automanaged"],
)
go_library(
name = "github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty",
srcs = [
"github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/doc.go",
"github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_linux.go",
],
tags = ["automanaged"],
)