You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
927 B
35 lines
927 B
load("@io_bazel_rules_go//go:def.bzl", "go_library") |
|
|
|
go_library( |
|
name = "go_default_library", |
|
srcs = [ |
|
"any_of.go", |
|
"contains.go", |
|
"deep_equals.go", |
|
"equals.go", |
|
"greater_or_equal.go", |
|
"greater_than.go", |
|
"less_or_equal.go", |
|
"less_than.go", |
|
"matcher.go", |
|
"not.go", |
|
"transform_description.go", |
|
], |
|
importmap = "go-common/vendor/github.com/smartystreets/assertions/internal/oglematchers", |
|
importpath = "github.com/smartystreets/assertions/internal/oglematchers", |
|
visibility = ["//vendor/github.com/smartystreets/assertions:__subpackages__"], |
|
) |
|
|
|
filegroup( |
|
name = "package-srcs", |
|
srcs = glob(["**"]), |
|
tags = ["automanaged"], |
|
visibility = ["//visibility:private"], |
|
) |
|
|
|
filegroup( |
|
name = "all-srcs", |
|
srcs = [":package-srcs"], |
|
tags = ["automanaged"], |
|
visibility = ["//visibility:public"], |
|
)
|
|
|