blob: 336234d178f52b9717189373f1209c8b47242fdd [file] [log] [blame]
// Copyright 2022 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: [
// Depends on config_data which is a system capability.
"//src/sys/test_manager/system-test.shard.cml",
],
children: [
{
name: "font_resolver",
url: "fuchsia-pkg://fuchsia.com/font_provider_integration_tests#meta/mock_font_resolver.cm",
},
{
name: "driver",
url: "fuchsia-pkg://fuchsia.com/font_provider_integration_tests#meta/test_driver.cm",
},
],
offer: [
{
protocol: "fuchsia.pkg.FontResolver",
from: "#font_resolver",
to: "#driver",
},
// Some components run under test get fonts from /config/data.
{
directory: "config-data",
from: "parent",
as: "config-data",
to: "#driver",
subdir: "fonts",
},
{
protocol: [ "fuchsia.logger.LogSink" ],
from: "parent",
to: [
"#driver",
"#font_resolver",
],
},
],
expose: [
{
protocol: "fuchsia.test.Suite",
from: "#driver",
},
],
}