BUILD 2.6 KB

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