blob: 0df22333f93cef1af034e85ef4e51e4fb5c56fba [file] [log] [blame]
# 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("test_realm") {
testonly = true
component_name = "test_realm"
manifest = "meta/test_realm.cml"
}
# This is brought directly into the test_manager's 'pkg_for_bootstrap' target.
fuchsia_component("bootstrap_test_realm") {
testonly = true
component_name = "bootstrap_test_realm"
manifest = "meta/bootstrap_test_realm.cml"
}
fuchsia_package("testing") {
testonly = true
package_name = "testing"
deps = [
":test_realm",
"//src/lib/fuchsia-component-test/realm_builder_server:realm_builder_server_component",
]
}