blob: c13bc12bbc704132d8b25d98652b00d06fb15c41 [file] [log] [blame] [edit]
# Copyright 2023 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_rust//rust:defs.bzl", "rust_binary")
rust_binary(
name = "build_sdk",
srcs = glob(["src/*.rs"]),
data = [":build_sdk.sh"],
visibility = ["@portage//:__subpackages__"],
deps = [
"//bazel/portage/common/cliutil",
"//bazel/portage/common/container",
"//bazel/portage/common/fileutil",
"@alchemy_crates//:anyhow",
"@alchemy_crates//:clap",
"@rules_rust//tools/runfiles",
],
)