• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2024 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5syntax = "proto3";
6
7package chromiumos.test.scheduling;
8
9option go_package = "./proto";
10
11message SwarmingDimensions {
12  map<string, DimValues> dims_map = 1;
13}
14
15message DimValues {
16  repeated string values = 2;
17}