blob: 54d5faae155842abcd9a387781cd27a348d3b70f [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.
{
include: [
"//sdk/lib/sys/component/realm_builder.shard.cml",
"syslog/client.shard.cml",
],
children: [
{
name: "test_realm_factory",
url: "intl-realm-factory#meta/realm-factory.cm",
},
{
name: "test_suite",
url: "fuchsia-intl-tests#meta/fuchsia-intl-test.cm",
},
],
offer: [
// TODO(297223481): The F15 CTF test uses these. Remove after we branch for F16.
{
protocol: [
"fuchsia.intl.PropertyProvider",
"fuchsia.settings.Intl",
],
from: "parent",
to: "#test_suite",
},
{
protocol: "fuchsia.intl.test.RealmFactory",
from: "#test_realm_factory",
to: "#test_suite",
},
{
protocol: [
"fuchsia.process.Launcher",
"fuchsia.stash.Store",
],
from: "parent",
to: "#test_realm_factory",
},
{
dictionary: "diagnostics",
from: "parent",
to: "#test_realm_factory",
},
{
storage: "data",
from: "parent",
to: "#test_realm_factory",
},
],
expose: [
{
protocol: "fuchsia.test.Suite",
from: "#test_suite",
},
],
}