blob: f61f268816a6da1011834e32f89d3cc6c9d122e5 [file] [log] [blame] [edit]
# Copyright 2022 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_python//python:defs.bzl", "py_binary")
sh_binary(
name = "ebuild_installer",
srcs = ["ebuild_installer.sh"],
visibility = ["//visibility:public"],
)
sh_binary(
name = "setup_board",
srcs = ["setup_board.sh"],
visibility = ["//visibility:public"],
)
py_binary(
name = "update_prebuilts",
srcs = ["update_prebuilts.py"],
visibility = ["//visibility:public"],
deps = ["//bazel/portage/bin/metadata:metadata_py_proto"],
)