| # 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. |
| |
| """Build targets for assembling and flashing a test products.""" |
| |
| load("@fuchsia_sdk//fuchsia:assembly.bzl", "fuchsia_product_bundle") |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| fuchsia_product_bundle( |
| name = "test_product.sherlock", |
| board_name = "sherlock", |
| main = "//products/sherlock:test_product.image", |
| partitions_config = "//products/sherlock:partitions", |
| product_bundle_name = "test_product.sherlock", |
| repository_keys = "//products/common:keys", |
| update_epoch = "1", |
| update_version_file = "//products/common:version_file.txt", |
| ) |
| |
| fuchsia_product_bundle( |
| name = "test_product.nelson", |
| board_name = "nelson", |
| main = "//products/nelson:test_product.image", |
| partitions_config = "//products/nelson:partitions", |
| product_bundle_name = "test_product.nelson", |
| repository_keys = "//products/common:keys", |
| update_epoch = "1", |
| update_version_file = "//products/common:version_file.txt", |
| ) |