...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "lifttest",
5 srcs = ["lifttest.go"],
6 importpath = "edge-infra.dev/pkg/f8n/warehouse/lift/cmd/internal/lifttest",
7 visibility = ["//pkg/f8n/warehouse/lift/cmd:__subpackages__"],
8 deps = [
9 "//pkg/f8n/warehouse/lift",
10 "//pkg/f8n/warehouse/oci/layout",
11 "//pkg/k8s/kustomize",
12 "//pkg/lib/build/bazel",
13 "//pkg/lib/build/git",
14 "//pkg/lib/cli/sh",
15 "//test/fixtures",
16 "@com_github_stretchr_testify//assert",
17 "@in_gopkg_yaml_v2//:yaml_v2",
18 "@io_bazel_rules_go//go/runfiles:go_default_library",
19 ],
20)
View as plain text