BUILD 824 B

1234567891011121314151617181920212223242526272829303132333435
  1. package(default_visibility = ["//visibility:public"])
  2. load(
  3. "@io_bazel_rules_go//go:def.bzl",
  4. "go_library",
  5. )
  6. go_library(
  7. name = "go_default_library",
  8. srcs = ["imports.go"],
  9. importpath = "k8s.io/kubernetes/test/e2e/instrumentation",
  10. deps = [
  11. "//test/e2e/instrumentation/logging:go_default_library",
  12. "//test/e2e/instrumentation/monitoring:go_default_library",
  13. ],
  14. )
  15. filegroup(
  16. name = "package-srcs",
  17. srcs = glob(["**"]),
  18. tags = ["automanaged"],
  19. visibility = ["//visibility:private"],
  20. )
  21. filegroup(
  22. name = "all-srcs",
  23. srcs = [
  24. ":package-srcs",
  25. "//test/e2e/instrumentation/common:all-srcs",
  26. "//test/e2e/instrumentation/logging:all-srcs",
  27. "//test/e2e/instrumentation/monitoring:all-srcs",
  28. ],
  29. tags = ["automanaged"],
  30. )