| # 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_infra//infra:infra.bzl", | 
 |     "FUCHSIA_TEST_TARGET", | 
 |     "fuchsia_builder_group", | 
 |     "fuchsia_test_group", | 
 | ) | 
 |  | 
 | fuchsia_test_group( | 
 |     name = "tests_reference_x64", | 
 |     product_bundle = "//products/reference:reference.x64", | 
 |     test_target = FUCHSIA_TEST_TARGET.QEMU, | 
 |     deps = [], | 
 | ) | 
 |  | 
 | fuchsia_test_group( | 
 |     name = "tests_reference_vim3", | 
 |     product_bundle = "//products/reference:reference.vim3", | 
 |     test_target = FUCHSIA_TEST_TARGET.VIM3, | 
 |     deps = [], | 
 | ) | 
 |  | 
 | # buildifier: leave-alone | 
 | fuchsia_builder_group( | 
 |     name = "infra", | 
 |     build_only = [ | 
 |         "//src:fuchsia_samples", | 
 |     ], | 
 |     test_groups = [ | 
 |         ":tests_reference_x64", | 
 |         ":tests_reference_vim3", | 
 |     ], | 
 |     cipd_uploads = [ | 
 |     ], | 
 | ) |