Autogenerate BUILD files

This commit is contained in:
Jeff Grafton
2017-08-09 15:45:29 -07:00
parent cce84c3e19
commit cf55f9ed45
197 changed files with 2140 additions and 591 deletions

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

@@ -11,17 +11,32 @@ go_library(
name = "go_default_library",
srcs = [
"attrs.go",
"attrs_unix.go",
"client.go",
"conn.go",
"packet.go",
"release.go",
"server.go",
"server_statvfs_impl.go",
"server_statvfs_linux.go",
"server_unix.go",
"server_statvfs_stubs.go",
"sftp.go",
],
] + select({
"@io_bazel_rules_go//go/platform:darwin_amd64": [
"attrs_unix.go",
"server_statvfs_darwin.go",
"server_statvfs_impl.go",
"server_unix.go",
],
"@io_bazel_rules_go//go/platform:linux_amd64": [
"attrs_unix.go",
"server_statvfs_impl.go",
"server_statvfs_linux.go",
"server_unix.go",
],
"@io_bazel_rules_go//go/platform:windows_amd64": [
"attrs_stubs.go",
"server_stubs.go",
],
"//conditions:default": [],
}),
tags = ["automanaged"],
deps = [
"//vendor/github.com/kr/fs:go_default_library",