mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
07b05616a0
Bumps [k8s.io/kubernetes](https://github.com/kubernetes/kubernetes) from 1.26.2 to 1.27.2. - [Release notes](https://github.com/kubernetes/kubernetes/releases) - [Commits](https://github.com/kubernetes/kubernetes/compare/v1.26.2...v1.27.2) --- updated-dependencies: - dependency-name: k8s.io/kubernetes dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
786 B
Python
36 lines
786 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"cost.go",
|
|
"error.go",
|
|
"errors.go",
|
|
"location.go",
|
|
"source.go",
|
|
],
|
|
importpath = "github.com/google/cel-go/common",
|
|
deps = [
|
|
"//common/runes:go_default_library",
|
|
"@org_golang_google_genproto//googleapis/api/expr/v1alpha1:go_default_library",
|
|
"@org_golang_x_text//width:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = [
|
|
"errors_test.go",
|
|
"source_test.go",
|
|
],
|
|
embed = [
|
|
":go_default_library",
|
|
],
|
|
)
|