mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00

* Updated dependencies Signed-off-by: Tomasz Baranski <tbaransk@redhat.com> * Replace skopeo with containers API. This commit removes dependence on skopeo (binary) and uses containers API. By doing that we're able to opimize the use of storage (scratch) space, storage I/O and download bandwith. Signed-off-by: Tomasz Baranski <tbaransk@redhat.com> * Fixing rebase - dependencies kerfuffle. Signed-off-by: Tomasz Baranski <tbaransk@redhat.com> * Handling docker-format images as well as OCI. Signed-off-by: Tomasz Baranski <tbaransk@redhat.com> * Fix for missing code-generator module. Signed-off-by: Tomasz Baranski <tbaransk@redhat.com> * Remove regex, image file in registry images are matched by a path prefix. Signed-off-by: Tomasz Baranski <tbaransk@redhat.com> * Added nginx proxy in front of docker registry for a rate-limited access. Signed-off-by: Tomasz Baranski <tbaransk@redhat.com>
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"aliases.go",
|
|
"dll_windows.go",
|
|
"empty.s",
|
|
"env_windows.go",
|
|
"eventlog.go",
|
|
"exec_windows.go",
|
|
"memory_windows.go",
|
|
"race.go",
|
|
"race0.go",
|
|
"security_windows.go",
|
|
"service.go",
|
|
"str.go",
|
|
"syscall.go",
|
|
"syscall_windows.go",
|
|
"types_windows.go",
|
|
"types_windows_386.go",
|
|
"types_windows_amd64.go",
|
|
"zerrors_windows.go",
|
|
"zknownfolderids_windows.go",
|
|
"zsyscall_windows.go",
|
|
],
|
|
importmap = "kubevirt.io/containerized-data-importer/vendor/golang.org/x/sys/windows",
|
|
importpath = "golang.org/x/sys/windows",
|
|
visibility = ["//visibility:public"],
|
|
deps = select({
|
|
"@io_bazel_rules_go//go/platform:windows": [
|
|
"//vendor/golang.org/x/sys/internal/unsafeheader:go_default_library",
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|