| # Copyright 2023 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", | 
 | ) | 
 |  | 
 | qemu_common_tests = [ | 
 | ] | 
 |  | 
 | fuchsia_test_group( | 
 |     name = "tests_qemu", | 
 |     product_bundle = "@fuchsia_products//:core.x64", | 
 |     test_target = FUCHSIA_TEST_TARGET.QEMU, | 
 |     deps = qemu_common_tests, | 
 | ) | 
 |  | 
 | fuchsia_test_group( | 
 |     name = "tests_qemu_asan", | 
 |     asan_enabled = True, | 
 |     product_bundle = "@fuchsia_products//:core.x64", | 
 |     test_target = FUCHSIA_TEST_TARGET.QEMU, | 
 |     deps = qemu_common_tests, | 
 | ) | 
 |  | 
 | fuchsia_test_group( | 
 |     name = "tests_vim3", | 
 |     product_bundle = "@fuchsia_products//:core.vim3", | 
 |     test_target = FUCHSIA_TEST_TARGET.VIM3, | 
 |     deps = [], | 
 | ) | 
 |  | 
 | # buildifier: leave-alone | 
 | fuchsia_builder_group( | 
 |     name = "infra", | 
 |     build_only = [ | 
 |     ], | 
 |     test_groups = [ | 
 |         # Uncomment these as your tests are added! | 
 |         # ":tests_qemu", | 
 |         # ":tests_qemu_asan", | 
 |         # ":tests_vim3", | 
 |     ], | 
 |     cipd_uploads = [ | 
 |     ], | 
 | ) |