• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 device brand.
12message DeviceBrandId {
13  string value = 1;
14
15  // Scan config to determine the BrandId
16  message ScanConfig {
17    // 'whitelabel_tag' value set in the VPD.
18    // See
19    // https://chromeos.google.com/partner/dlm/docs/factory/vpd.html#field-whitelabel_tag.
20    string whitelabel_tag = 1;
21
22    FeatureDeviceType feature_device_type = 2;
23
24    string custom_label_tag = 3;
25
26    enum FeatureDeviceType {
27      OFF = 0;
28      LEGACY = 1;
29      ON = 2;
30    }
31  }
32}
33