Merge changes from topic "product_config_module" into main
* changes: Use product_config from buildinfo_prop module Add product_config module
This commit is contained in:
@@ -83,6 +83,7 @@ bootstrap_go_package {
|
||||
"plugin.go",
|
||||
"prebuilt.go",
|
||||
"prebuilt_build_tool.go",
|
||||
"product_config.go",
|
||||
"proto.go",
|
||||
"provider.go",
|
||||
"raw_files.go",
|
||||
|
@@ -16,7 +16,6 @@ package android
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/google/blueprint/proptools"
|
||||
)
|
||||
@@ -29,6 +28,8 @@ func init() {
|
||||
type buildinfoPropProperties struct {
|
||||
// Whether this module is directly installable to one of the partitions. Default: true.
|
||||
Installable *bool
|
||||
|
||||
Product_config *string `android:"path"`
|
||||
}
|
||||
|
||||
type buildinfoPropModule struct {
|
||||
@@ -54,24 +55,6 @@ func (p *buildinfoPropModule) OutputFiles(tag string) (Paths, error) {
|
||||
return Paths{p.outputFilePath}, nil
|
||||
}
|
||||
|
||||
func getBuildVariant(config Config) string {
|
||||
if config.Eng() {
|
||||
return "eng"
|
||||
} else if config.Debuggable() {
|
||||
return "userdebug"
|
||||
} else {
|
||||
return "user"
|
||||
}
|
||||
}
|
||||
|
||||
func getBuildFlavor(config Config) string {
|
||||
buildFlavor := config.DeviceProduct() + "-" + getBuildVariant(config)
|
||||
if InList("address", config.SanitizeDevice()) && !strings.Contains(buildFlavor, "_asan") {
|
||||
buildFlavor += "_asan"
|
||||
}
|
||||
return buildFlavor
|
||||
}
|
||||
|
||||
func shouldAddBuildThumbprint(config Config) bool {
|
||||
knownOemProperties := []string{
|
||||
"ro.product.brand",
|
||||
@@ -101,20 +84,10 @@ func (p *buildinfoPropModule) GenerateAndroidBuildActions(ctx ModuleContext) {
|
||||
rule := NewRuleBuilder(pctx, ctx)
|
||||
|
||||
config := ctx.Config()
|
||||
buildVariant := getBuildVariant(config)
|
||||
buildFlavor := getBuildFlavor(config)
|
||||
|
||||
cmd := rule.Command().BuiltTool("buildinfo")
|
||||
|
||||
if config.BoardUseVbmetaDigestInFingerprint() {
|
||||
cmd.Flag("--use-vbmeta-digest-in-fingerprint")
|
||||
}
|
||||
|
||||
cmd.FlagWithArg("--build-flavor=", buildFlavor)
|
||||
cmd.FlagWithInput("--build-hostname-file=", config.BuildHostnameFile(ctx))
|
||||
cmd.FlagWithArg("--build-id=", config.BuildId())
|
||||
cmd.FlagWithArg("--build-keys=", config.BuildKeys())
|
||||
|
||||
// Note: depending on BuildNumberFile will cause the build.prop file to be rebuilt
|
||||
// every build, but that's intentional.
|
||||
cmd.FlagWithInput("--build-number-file=", config.BuildNumberFile(ctx))
|
||||
@@ -122,42 +95,14 @@ func (p *buildinfoPropModule) GenerateAndroidBuildActions(ctx ModuleContext) {
|
||||
// In the previous make implementation, a dependency was not added on the thumbprint file
|
||||
cmd.FlagWithArg("--build-thumbprint-file=", config.BuildThumbprintFile(ctx).String())
|
||||
}
|
||||
|
||||
cmd.FlagWithArg("--build-type=", config.BuildType())
|
||||
cmd.FlagWithArg("--build-username=", config.Getenv("BUILD_USERNAME"))
|
||||
cmd.FlagWithArg("--build-variant=", buildVariant)
|
||||
cmd.FlagForEachArg("--cpu-abis=", config.DeviceAbi())
|
||||
|
||||
// Technically we should also have a dependency on BUILD_DATETIME_FILE,
|
||||
// but it can be either an absolute or relative path, which is hard to turn into
|
||||
// a Path object. So just rely on the BuildNumberFile always changing to cause
|
||||
// us to rebuild.
|
||||
cmd.FlagWithArg("--date-file=", ctx.Config().Getenv("BUILD_DATETIME_FILE"))
|
||||
|
||||
if len(config.ProductLocales()) > 0 {
|
||||
cmd.FlagWithArg("--default-locale=", config.ProductLocales()[0])
|
||||
}
|
||||
|
||||
cmd.FlagForEachArg("--default-wifi-channels=", config.ProductDefaultWifiChannels())
|
||||
cmd.FlagWithArg("--device=", config.DeviceName())
|
||||
if config.DisplayBuildNumber() {
|
||||
cmd.Flag("--display-build-number")
|
||||
}
|
||||
|
||||
cmd.FlagWithArg("--platform-base-os=", config.PlatformBaseOS())
|
||||
cmd.FlagWithArg("--platform-display-version=", config.PlatformDisplayVersionName())
|
||||
cmd.FlagWithArg("--platform-min-supported-target-sdk-version=", config.PlatformMinSupportedTargetSdkVersion())
|
||||
cmd.FlagWithInput("--platform-preview-sdk-fingerprint-file=", ApiFingerprintPath(ctx))
|
||||
cmd.FlagWithArg("--platform-preview-sdk-version=", config.PlatformPreviewSdkVersion())
|
||||
cmd.FlagWithArg("--platform-sdk-version=", config.PlatformSdkVersion().String())
|
||||
cmd.FlagWithArg("--platform-security-patch=", config.PlatformSecurityPatch())
|
||||
cmd.FlagWithArg("--platform-version=", config.PlatformVersionName())
|
||||
cmd.FlagWithArg("--platform-version-codename=", config.PlatformSdkCodename())
|
||||
cmd.FlagForEachArg("--platform-version-all-codenames=", config.PlatformVersionActiveCodenames())
|
||||
cmd.FlagWithArg("--platform-version-known-codenames=", config.PlatformVersionKnownCodenames())
|
||||
cmd.FlagWithArg("--platform-version-last-stable=", config.PlatformVersionLastStable())
|
||||
cmd.FlagWithArg("--product=", config.DeviceProduct())
|
||||
|
||||
cmd.FlagWithInput("--product-config=", PathForModuleSrc(ctx, proptools.String(p.properties.Product_config)))
|
||||
cmd.FlagWithOutput("--out=", p.outputFilePath)
|
||||
|
||||
rule.Build(ctx.ModuleName(), "generating buildinfo props")
|
||||
|
58
android/product_config.go
Normal file
58
android/product_config.go
Normal file
@@ -0,0 +1,58 @@
|
||||
// Copyright 2024 Google Inc. All rights reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package android
|
||||
|
||||
import "github.com/google/blueprint/proptools"
|
||||
|
||||
func init() {
|
||||
ctx := InitRegistrationContext
|
||||
ctx.RegisterModuleType("product_config", productConfigFactory)
|
||||
}
|
||||
|
||||
type productConfigModule struct {
|
||||
ModuleBase
|
||||
}
|
||||
|
||||
func (p *productConfigModule) GenerateAndroidBuildActions(ctx ModuleContext) {
|
||||
if ctx.ModuleName() != "product_config" || ctx.ModuleDir() != "build/soong" {
|
||||
ctx.ModuleErrorf("There can only be one product_config module in build/soong")
|
||||
return
|
||||
}
|
||||
outputFilePath := PathForModuleOut(ctx, p.Name()+".json").OutputPath
|
||||
|
||||
// DeviceProduct can be null so calling ctx.Config().DeviceProduct() may cause null dereference
|
||||
targetProduct := proptools.String(ctx.Config().config.productVariables.DeviceProduct)
|
||||
if targetProduct != "" {
|
||||
targetProduct += "."
|
||||
}
|
||||
soongVariablesPath := PathForOutput(ctx, "soong."+targetProduct+"variables")
|
||||
extraVariablesPath := PathForOutput(ctx, "soong."+targetProduct+"extra.variables")
|
||||
|
||||
rule := NewRuleBuilder(pctx, ctx)
|
||||
rule.Command().BuiltTool("merge_json").
|
||||
Output(outputFilePath).
|
||||
Input(soongVariablesPath).
|
||||
Input(extraVariablesPath).
|
||||
rule.Build("product_config.json", "building product_config.json")
|
||||
|
||||
ctx.SetOutputFiles(Paths{outputFilePath}, "")
|
||||
}
|
||||
|
||||
// product_config module exports product variables and extra variables as a JSON file.
|
||||
func productConfigFactory() Module {
|
||||
module := &productConfigModule{}
|
||||
InitAndroidModule(module)
|
||||
return module
|
||||
}
|
Reference in New Issue
Block a user