mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 10:10:41 +00:00
13 lines
332 B
Protocol Buffer
13 lines
332 B
Protocol Buffer
|
// Copyright 2022 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 recipes.crosvm.build_chromeos;
|
||
|
|
||
|
message BuildChromeOsProperties {
|
||
|
// ChromeOS board to build and test
|
||
|
optional string board = 1;
|
||
|
}
|