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

1
vendor/github.com/pkg/errors/BUILD generated vendored
View File

@@ -6,6 +6,7 @@ go_library(
"errors.go",
"stack.go",
],
importmap = "vendor/github.com/pkg/errors",
importpath = "github.com/pkg/errors",
visibility = ["//visibility:public"],
)

82
vendor/github.com/pkg/sftp/BUILD generated vendored
View File

@@ -4,84 +4,22 @@ go_library(
name = "go_default_library",
srcs = [
"attrs.go",
"attrs_stubs.go",
"attrs_unix.go",
"client.go",
"conn.go",
"packet.go",
"release.go",
"server.go",
"server_statvfs_darwin.go",
"server_statvfs_impl.go",
"server_statvfs_linux.go",
"server_statvfs_stubs.go",
"server_stubs.go",
"server_unix.go",
"sftp.go",
] + select({
"@io_bazel_rules_go//go/platform:android": [
"attrs_stubs.go",
"server_statvfs_stubs.go",
"server_stubs.go",
],
"@io_bazel_rules_go//go/platform:darwin": [
"attrs_stubs.go",
"attrs_unix.go",
"server_statvfs_darwin.go",
"server_statvfs_impl.go",
"server_stubs.go",
"server_unix.go",
],
"@io_bazel_rules_go//go/platform:dragonfly": [
"attrs_stubs.go",
"attrs_unix.go",
"server_statvfs_stubs.go",
"server_stubs.go",
"server_unix.go",
],
"@io_bazel_rules_go//go/platform:freebsd": [
"attrs_stubs.go",
"attrs_unix.go",
"server_statvfs_stubs.go",
"server_stubs.go",
"server_unix.go",
],
"@io_bazel_rules_go//go/platform:linux": [
"attrs_stubs.go",
"attrs_unix.go",
"server_statvfs_impl.go",
"server_statvfs_linux.go",
"server_stubs.go",
"server_unix.go",
],
"@io_bazel_rules_go//go/platform:nacl": [
"attrs_stubs.go",
"server_statvfs_stubs.go",
"server_stubs.go",
],
"@io_bazel_rules_go//go/platform:netbsd": [
"attrs_stubs.go",
"attrs_unix.go",
"server_statvfs_stubs.go",
"server_stubs.go",
"server_unix.go",
],
"@io_bazel_rules_go//go/platform:openbsd": [
"attrs_stubs.go",
"attrs_unix.go",
"server_statvfs_stubs.go",
"server_stubs.go",
"server_unix.go",
],
"@io_bazel_rules_go//go/platform:plan9": [
"server_statvfs_stubs.go",
],
"@io_bazel_rules_go//go/platform:solaris": [
"attrs_stubs.go",
"attrs_unix.go",
"server_statvfs_stubs.go",
"server_stubs.go",
"server_unix.go",
],
"@io_bazel_rules_go//go/platform:windows": [
"attrs_stubs.go",
"server_statvfs_stubs.go",
"server_stubs.go",
],
"//conditions:default": [],
}),
],
importmap = "vendor/github.com/pkg/sftp",
importpath = "github.com/pkg/sftp",
visibility = ["//visibility:public"],
deps = [