| # 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( |
| "@rules_fuchsia//fuchsia:assembly.bzl", |
| "fuchsia_product", |
| "fuchsia_product_bundle", |
| ) |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| # Your Product |
| |
| # fuchsia_product( |
| # name = "", |
| # board_config = "", |
| # platform_artifacts = "", |
| # product_config = my_product_config, |
| # ) |
| # |
| # fuchsia_product_bundle( |
| # name = "", |
| # main = "", |
| # product_bundle_name = "", |
| # repository_keys = "", |
| # update_epoch = "", |
| # update_version_file = "", |
| # // Virtual devices is only needed for emulating a single device |
| # virtual_devices = [ |
| # "", |
| # ], |
| # ) |
| |
| # Your Product Configuration |
| # |
| # fuchsia_product_configuration( |
| # name = "", |
| # product_config_json = { |
| # "platform": { |
| # |
| # }, |
| # "product": { |
| # |
| # }, |
| # }, |
| # base_packages = [""], |
| # ) |