blob: 95e2ae5f68b94038f6018777118e5c6a0b93d2aa [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.
syntax = "proto3";
package recipes.fuchsia.recipes;
import "recipe_modules/fuchsia/recipe_testing/options.proto";
message InputProperties {
// Remote manifest repository.
string remote = 1;
// Finish after unit tests.
bool unittest_only = 2;
// Recipe testing parameters.
recipe_modules.fuchsia.recipe_testing.Options recipe_testing_options = 3;
// Whether to check for out-of-order and unused recipe deps.
bool check_deps = 4;
}