BUILD 1003 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package(default_visibility = ["//visibility:public"])
  2. load(
  3. "@io_bazel_rules_go//go:def.bzl",
  4. "go_library",
  5. )
  6. load("//build:bindata.bzl", "go_bindata")
  7. go_library(
  8. name = "go_default_library",
  9. srcs = [
  10. "bindata.go",
  11. "gobindata_util.go",
  12. "main.go",
  13. ],
  14. importpath = "k8s.io/kubernetes/test/e2e/generated",
  15. deps = [
  16. "//vendor/k8s.io/klog:go_default_library",
  17. ],
  18. )
  19. # IMPORTANT: if you make any changes here, you must also update hack/generate-bindata.sh.
  20. go_bindata(
  21. name = "bindata",
  22. srcs = [
  23. "//test/e2e/testing-manifests:all-srcs",
  24. "//test/fixtures:all-srcs",
  25. "//test/images:all-srcs",
  26. ],
  27. outs = ["bindata.go"],
  28. compress = True,
  29. include_metadata = False,
  30. )
  31. filegroup(
  32. name = "package-srcs",
  33. srcs = glob(["**"]),
  34. tags = ["automanaged"],
  35. visibility = ["//visibility:private"],
  36. )
  37. filegroup(
  38. name = "all-srcs",
  39. srcs = [":package-srcs"],
  40. tags = ["automanaged"],
  41. )