blob: 9fe1e804456ef27d1fa08ff48b5dcbffae63fa85 [file] [log] [blame]
// Copyright 2020 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.ffmpeg;
message InputProperties {
// The git remote containing the jiri manifest.
string remote = 1;
// The jiri manifest to check out.
string manifest = 2;
// The ffmpeg recipe does multiple builds, one per target architecture. A
// Build message represents the parameters for a single build.
message Build {
// The path to a fint parameters file. All build parameters *must* be
// specified in the fint parameters file. Any parameters specified as recipe
// properties are only for informational purposes for the recipe and cannot
// influence the results of the build.
string fint_params_path = 1;
// The target architecture used for the build.
// TODO(olivernewman): Refactor the recipe to not use this field before
// starting the build, so we can just retrieve it from fint params.
string target = 2;
}
repeated Build builds = 3;
}