Autogenerate BUILD files

This commit is contained in:
Jeff Grafton
2017-12-23 13:06:26 -08:00
parent b13263eeb3
commit efee0704c6
825 changed files with 6006 additions and 1311 deletions

45
vendor/github.com/godbus/dbus/BUILD generated vendored
View File

@@ -8,7 +8,6 @@ go_library(
"auth_sha1.go",
"call.go",
"conn.go",
"conn_other.go",
"dbus.go",
"decoder.go",
"doc.go",
@@ -20,18 +19,56 @@ go_library(
"object.go",
"sig.go",
"transport_generic.go",
"transport_unix.go",
"variant.go",
"variant_lexer.go",
"variant_parser.go",
] + select({
"@io_bazel_rules_go//go/platform:darwin_amd64": [
"@io_bazel_rules_go//go/platform:android": [
"conn_other.go",
"transport_unix.go",
],
"@io_bazel_rules_go//go/platform:darwin": [
"conn_darwin.go",
"transport_darwin.go",
"transport_unix.go",
],
"@io_bazel_rules_go//go/platform:linux_amd64": [
"@io_bazel_rules_go//go/platform:dragonfly": [
"conn_other.go",
"transport_unix.go",
"transport_unixcred_dragonfly.go",
],
"@io_bazel_rules_go//go/platform:freebsd": [
"conn_other.go",
"transport_unix.go",
],
"@io_bazel_rules_go//go/platform:linux": [
"conn_other.go",
"transport_unix.go",
"transport_unixcred_linux.go",
],
"@io_bazel_rules_go//go/platform:nacl": [
"conn_other.go",
"transport_unix.go",
],
"@io_bazel_rules_go//go/platform:netbsd": [
"conn_other.go",
"transport_unix.go",
],
"@io_bazel_rules_go//go/platform:openbsd": [
"conn_other.go",
"transport_unix.go",
],
"@io_bazel_rules_go//go/platform:plan9": [
"conn_other.go",
"transport_unix.go",
],
"@io_bazel_rules_go//go/platform:solaris": [
"conn_other.go",
"transport_unix.go",
],
"@io_bazel_rules_go//go/platform:windows": [
"conn_other.go",
],
"//conditions:default": [],
}),
cgo = True,