blob: a0ea7848a041c1ddb6df0a2784a1c577727e4cd5 [file] [log] [blame]
// Copyright 2019 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.
library fuchsia.sys2;
/// Declares a runner capability backed by a service.
table RunnerDecl {
/// The name of this runner.
1: runner_name name;
/// The provider of the underlying service relative to the component itself.
/// Must be `realm`, `self`, or `child`.
2: Ref source;
/// The path of the capability within the specified source.
3: string:MAX_PATH_LENGTH source_path;
};