blob: f2c6daedb4d215de6b9d1a4569bd53d60fe73b5d [file] [log] [blame]
// Copyright 2019 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 lab_platform;
import "lab_platform/stable_cros_version.proto";
import "lab_platform/stable_faft_version.proto";
import "lab_platform/stable_firmware_version.proto";
option go_package = "go.chromium.org/chromiumos/infra/proto/go/lab_platform";
// StableVersions is a structure containing all of the versions for various
// components: CrOS itself, the firmware image, and the testing firmware image (faft).
// Next Tag: 4
message StableVersions {
repeated StableCrosVersion cros = 1;
repeated StableFaftVersion faft = 2;
repeated StableFirmwareVersion firmware = 3;
}