BUILD.bazel 722 B

12345678910111213141516171819202122232425262728
  1. load("@io_bazel_rules_go//go:def.bzl", "go_library")
  2. go_library(
  3. name = "go_default_library",
  4. srcs = [
  5. "doc.go",
  6. "test_response_writer.go",
  7. "test_round_tripper.go",
  8. ],
  9. importmap = "go-common/vendor/github.com/stretchr/testify/http",
  10. importpath = "github.com/stretchr/testify/http",
  11. visibility = ["//visibility:public"],
  12. deps = ["//vendor/github.com/stretchr/testify/mock:go_default_library"],
  13. )
  14. filegroup(
  15. name = "package-srcs",
  16. srcs = glob(["**"]),
  17. tags = ["automanaged"],
  18. visibility = ["//visibility:private"],
  19. )
  20. filegroup(
  21. name = "all-srcs",
  22. srcs = [":package-srcs"],
  23. tags = ["automanaged"],
  24. visibility = ["//visibility:public"],
  25. )