1// Copyright 2020 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.config.api; 8 9option go_package = "go.chromium.org/chromiumos/config/go/api"; 10 11// Uniquely identifies a Chromium OS hardware design project. 12message DesignId { 13 string value = 1; 14 15 // Design ID to use for software configs. May be used in place of value for 16 // software config (e.g. audio) purposes. 17 DesignId config_design_id_override = 2; 18 19 // Design ID to use for the model name, to be used as the key for test 20 // coverage requirements, and hence the cros-config model name. 21 DesignId model_name_design_id_override = 3; 22} 23