• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto3";
2
3package chromiumos.config.api.software;
4
5option go_package = "go.chromium.org/chromiumos/config/go/api/software";
6
7import "chromiumos/config/api/device_brand_id.proto";
8
9// Contains all of the device-brand-specific configuration that can be
10// updated via new software builds/releases.
11//
12// During manufacturing, the DeviceBrandId will be set for a given device,
13// which will subsequently determine what BrandConfig shall be selected from
14// the current software-build installed on the device.
15message BrandConfig {
16  DeviceBrandId brand_id = 1;
17  DeviceBrandId.ScanConfig scan_config = 2;
18  string wallpaper = 3;
19  // See chromeos-config/README.md for details
20  string regulatory_label = 4;
21  string help_content_id = 5;
22  bool cloud_gaming_device = 6;
23}
24