load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "storage", srcs = [ "options.go", "storage.go", ], importpath = "edge-infra.dev/pkg/f8n/devinfra/gcp/job/storage", visibility = ["//visibility:public"], deps = [ "//pkg/lib/cli/rags", "//pkg/lib/errors", "//pkg/lib/fog", "@com_google_cloud_go_storage//:storage", "@org_golang_google_api//iterator", ], ) go_test( name = "storage_test", srcs = [ "integration_test.go", "storage_test.go", ], data = ["//test:config_json"], embed = [":storage"], visibility = ["//visibility:public"], deps = [ "@com_github_stretchr_testify//assert", "@com_google_cloud_go_storage//:storage", "@org_golang_google_api//option", ], )