blob: 3dde0eab2f3a627e06762193e7b9f87cdf334ca6 [file] [log] [blame]
// Copyright 2020 The Chromium OS 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 prototype;
import "chromiumos/config/prototype/build_target.proto";
option go_package = "go.chromium.org/chromiumos/infra/proto/go/prototype";
// Defines a builder from platform's point of view.
message BuilderConfig {
// Whether this builder should be considered criticial.
bool critical = 1;
// Defines the build target for this builder config.
repeated chromiumos.config.prototype.BuildTarget build_targets = 2;
}