blob: 4c7b92e05cb52f6d4277659391ff41d7f94f9ea8 [file] [log] [blame]
# Copyright 2024 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
load("@rules_go//go:def.bzl", "go_library")
go_library(
name = "payload",
srcs = [
"cloud_storage.go",
"http.go",
"payload.go",
],
importpath = "chromium.googlesource.com/chromiumos/platform/dev-util.git/contrib/fflash/internal/payload",
visibility = ["//:__subpackages__"],
deps = [
"//internal/artifact",
"//internal/gsmisc",
"@com_google_cloud_go_storage//:storage",
"@org_golang_google_api//option",
"@org_golang_x_oauth2//:oauth2",
],
)