Rename device_config --> aconfig and definitions --> declarations

Bug: 285303012
Test: for x in next trunk trunk_food trunk_staging ; do lunch aosp_panther-$x-eng ; m nothing ; done
Change-Id: I3375f46b3ecbbc516d1bee6ab3f80725fcccde8f
This commit is contained in:
Joe Onorato
2023-06-21 15:16:23 -07:00
parent 81b25ed02b
commit 981c926269
13 changed files with 137 additions and 137 deletions

View File

@@ -184,8 +184,8 @@ func (c Config) ReleaseVersion() string {
}
// The flag values files passed to aconfig, derived from RELEASE_VERSION
func (c Config) ReleaseDeviceConfigValueSets() []string {
return c.config.productVariables.ReleaseDeviceConfigValueSets
func (c Config) ReleaseAconfigValueSets() []string {
return c.config.productVariables.ReleaseAconfigValueSets
}
// A DeviceConfig object represents the configuration for a particular device

View File

@@ -477,8 +477,8 @@ type productVariables struct {
ProductBrand string `json:",omitempty"`
BuildVersionTags []string `json:",omitempty"`
ReleaseVersion string `json:",omitempty"`
ReleaseDeviceConfigValueSets []string `json:",omitempty"`
ReleaseVersion string `json:",omitempty"`
ReleaseAconfigValueSets []string `json:",omitempty"`
}
func boolPtr(v bool) *bool {