blob: c0c3628061447b8d3d194182dc4f4d6c1fcb3b94 [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: [
"--critical-child=baz",
"--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.baz",
from: "parent",
},
],
}