Autogenerate BUILD files
This commit is contained in:
71
vendor/github.com/kr/pty/BUILD
generated
vendored
71
vendor/github.com/kr/pty/BUILD
generated
vendored
@@ -5,21 +5,80 @@ go_library(
|
||||
srcs = [
|
||||
"doc.go",
|
||||
"ioctl.go",
|
||||
"pty_unsupported.go",
|
||||
"run.go",
|
||||
"util.go",
|
||||
] + select({
|
||||
"@io_bazel_rules_go//go/platform:darwin_amd64": [
|
||||
"@io_bazel_rules_go//go/platform:android": [
|
||||
"pty_unsupported.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:darwin": [
|
||||
"ioctl_bsd.go",
|
||||
"pty_darwin.go",
|
||||
"ztypes_amd64.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:linux_amd64": [
|
||||
"@io_bazel_rules_go//go/platform:dragonfly": [
|
||||
"ioctl_bsd.go",
|
||||
"pty_unsupported.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:freebsd": [
|
||||
"ioctl_bsd.go",
|
||||
"pty_freebsd.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:linux": [
|
||||
"pty_linux.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:nacl": [
|
||||
"pty_unsupported.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:netbsd": [
|
||||
"ioctl_bsd.go",
|
||||
"pty_unsupported.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:openbsd": [
|
||||
"ioctl_bsd.go",
|
||||
"pty_unsupported.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:plan9": [
|
||||
"pty_unsupported.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:solaris": [
|
||||
"pty_unsupported.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:windows": [
|
||||
"pty_unsupported.go",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + select({
|
||||
"@io_bazel_rules_go//go/platform:386": [
|
||||
"ztypes_386.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:amd64": [
|
||||
"ztypes_amd64.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:windows_amd64": [
|
||||
"ztypes_amd64.go",
|
||||
"@io_bazel_rules_go//go/platform:arm": [
|
||||
"ztypes_arm.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:arm64": [
|
||||
"ztypes_arm64.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:ppc64": [
|
||||
"ztypes_ppc64.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:ppc64le": [
|
||||
"ztypes_ppc64le.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:s390x": [
|
||||
"ztypes_s390x.go",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + select({
|
||||
"@io_bazel_rules_go//go/platform:freebsd_386": [
|
||||
"ztypes_freebsd_386.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:freebsd_amd64": [
|
||||
"ztypes_freebsd_amd64.go",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:freebsd_arm": [
|
||||
"ztypes_freebsd_arm.go",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
|
Reference in New Issue
Block a user