# Copyright 2024 The Fuchsia Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
load( | |
"@fuchsia_sdk//fuchsia:assembly.bzl", | |
"fuchsia_prebuilt_board_input_bundle", | |
) | |
package(default_visibility = ["//visibility:public"]) | |
exports_files( | |
glob( | |
["**/*"], | |
exclude_directories = 0, | |
), | |
) | |
filegroup( | |
name = "all_files", | |
srcs = glob( | |
["**/*"], | |
), | |
) | |
fuchsia_prebuilt_board_input_bundle( | |
name = "rtc", | |
config = "rtc/board_input_bundle.json", | |
files = ":all_files", | |
) |