| # 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. |
| |
| import("//build/components.gni") |
| |
| fuchsia_component("environment-test-component") { |
| component_name = "environment-test" |
| visibility = [ ":*" ] |
| testonly = true |
| manifest = "meta/environment-test.cml" |
| deps = [ "engine" ] |
| } |
| |
| fuchsia_component("adapter-component") { |
| component_name = "adapter" |
| visibility = [ ":*" ] |
| testonly = true |
| manifest = "meta/adapter.cml" |
| deps = [ "adapter" ] |
| } |
| |
| fuchsia_test_package("tests") { |
| package_name = "realmfuzzer-coverage-integration-tests" |
| test_components = [ ":environment-test-component" ] |
| deps = [ |
| ":adapter-component", |
| "//src/sys/fuzzing/realmfuzzer/coverage", |
| ] |
| } |