blob: 7c4f5599411483abc2993f345ee4669ae3576dbb [file] [log] [blame]
// Copyright 2021 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: [ "syslog/client.shard.cml" ],
// Information about the program to run.
program: {
// Use the built-in ELF runner.
runner: "elf",
// The binary to run for this component.
binary: "bouncing_ball",
},
// Capabilities used by this component
use: [
{ protocol: "fuchsia.ui.scenic.Scenic" },
],
// Capabilities provided by this component
capabilities: [
{ protocol: "fuchsia.ui.app.ViewProvider" },
],
expose: [
{
protocol: "fuchsia.component.Binder",
from: "framework",
},
{
protocol: "fuchsia.ui.app.ViewProvider",
from: "self",
},
],
}