blob: c9013d546feb732d6aae108b5a4f9f3e30f6c9ae [file] [log] [blame]
// Copyright 2021 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 chromiumos;
option go_package = "go.chromium.org/chromiumos/infra/proto/go/chromiumos";
// Stores information about the cached SDK.
message SdkCacheState {
// The SDK version. See crbug.com/1023855.
int32 version = 1;
// The manifest branch.
string manifest_branch = 2;
// The manifest URL.
string manifest_url = 3;
// The git hash of the snapshot.
string snapshot_hash = 4;
}