blob: b65d6e285f15839b4356ec5d6b6fad059f2c6709 [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: [ "//src/modular/bin/basemgr/meta/basemgr.cml" ],
program: {
args: [
"--eager-child=foo",
"--eager-child=bar",
"--backoff-base-minutes=0",
],
},
// The routing below is slightly different than the one expected in production.
// In prod, `basemgr` is expected to `use from child` and route Binder
// to the proper path by using the `path` field.
// In this case, we consume that path from the parent. This is done strictly
// to enable easier testing setup.
use: [
{
protocol: "fuchsia.component.Binder.foo",
from: "parent",
},
{
protocol: "fuchsia.component.Binder.bar",
from: "parent",
},
],
}