BUILD.bazel 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. load("@io_bazel_rules_go//go:def.bzl", "go_library")
  2. go_library(
  3. name = "go_default_library",
  4. srcs = [
  5. "collections.go",
  6. "doc.go",
  7. "equality.go",
  8. "filter.go",
  9. "messages.go",
  10. "panic.go",
  11. "quantity.go",
  12. "serializer.go",
  13. "strings.go",
  14. "time.go",
  15. "type.go",
  16. ],
  17. importmap = "go-common/vendor/github.com/smartystreets/assertions",
  18. importpath = "github.com/smartystreets/assertions",
  19. visibility = ["//visibility:public"],
  20. deps = [
  21. "//vendor/github.com/smartystreets/assertions/internal/go-render/render:go_default_library",
  22. "//vendor/github.com/smartystreets/assertions/internal/oglematchers:go_default_library",
  23. ],
  24. )
  25. filegroup(
  26. name = "package-srcs",
  27. srcs = glob(["**"]),
  28. tags = ["automanaged"],
  29. visibility = ["//visibility:private"],
  30. )
  31. filegroup(
  32. name = "all-srcs",
  33. srcs = [
  34. ":package-srcs",
  35. "//vendor/github.com/smartystreets/assertions/internal/go-render/render:all-srcs",
  36. "//vendor/github.com/smartystreets/assertions/internal/oglematchers:all-srcs",
  37. ],
  38. tags = ["automanaged"],
  39. visibility = ["//visibility:public"],
  40. )