BUILD 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. load("@io_bazel_rules_go//go:def.bzl", "go_library")
  2. go_library(
  3. name = "go_default_library",
  4. srcs = [
  5. "and.go",
  6. "assignable_to_type_of_matcher.go",
  7. "attributes_slice.go",
  8. "be_a_directory.go",
  9. "be_a_regular_file.go",
  10. "be_an_existing_file.go",
  11. "be_closed_matcher.go",
  12. "be_element_of_matcher.go",
  13. "be_empty_matcher.go",
  14. "be_equivalent_to_matcher.go",
  15. "be_false_matcher.go",
  16. "be_identical_to.go",
  17. "be_nil_matcher.go",
  18. "be_numerically_matcher.go",
  19. "be_sent_matcher.go",
  20. "be_temporally_matcher.go",
  21. "be_true_matcher.go",
  22. "be_zero_matcher.go",
  23. "consist_of.go",
  24. "contain_element_matcher.go",
  25. "contain_substring_matcher.go",
  26. "equal_matcher.go",
  27. "have_cap_matcher.go",
  28. "have_key_matcher.go",
  29. "have_key_with_value_matcher.go",
  30. "have_len_matcher.go",
  31. "have_occurred_matcher.go",
  32. "have_prefix_matcher.go",
  33. "have_suffix_matcher.go",
  34. "match_error_matcher.go",
  35. "match_json_matcher.go",
  36. "match_regexp_matcher.go",
  37. "match_xml_matcher.go",
  38. "match_yaml_matcher.go",
  39. "not.go",
  40. "or.go",
  41. "panic_matcher.go",
  42. "receive_matcher.go",
  43. "semi_structured_data_support.go",
  44. "succeed_matcher.go",
  45. "type_support.go",
  46. "with_transform.go",
  47. ],
  48. importmap = "k8s.io/kubernetes/vendor/github.com/onsi/gomega/matchers",
  49. importpath = "github.com/onsi/gomega/matchers",
  50. visibility = ["//visibility:public"],
  51. deps = [
  52. "//vendor/github.com/onsi/gomega/format:go_default_library",
  53. "//vendor/github.com/onsi/gomega/internal/oraclematcher:go_default_library",
  54. "//vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph:go_default_library",
  55. "//vendor/github.com/onsi/gomega/types:go_default_library",
  56. "//vendor/golang.org/x/net/html/charset:go_default_library",
  57. "//vendor/gopkg.in/yaml.v2:go_default_library",
  58. ],
  59. )
  60. filegroup(
  61. name = "package-srcs",
  62. srcs = glob(["**"]),
  63. tags = ["automanaged"],
  64. visibility = ["//visibility:private"],
  65. )
  66. filegroup(
  67. name = "all-srcs",
  68. srcs = [
  69. ":package-srcs",
  70. "//vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph:all-srcs",
  71. "//vendor/github.com/onsi/gomega/matchers/support/goraph/edge:all-srcs",
  72. "//vendor/github.com/onsi/gomega/matchers/support/goraph/node:all-srcs",
  73. "//vendor/github.com/onsi/gomega/matchers/support/goraph/util:all-srcs",
  74. ],
  75. tags = ["automanaged"],
  76. visibility = ["//visibility:public"],
  77. )