00a8a3f746
There is no need for multiproduct_kati to run the tests for every product, they don't vary by product config. --skip-soong-tests can also be used for local development to run soong_build even if the tests don't pass. Bug: 156428456 Test: m --skip-soong-tests nothing Change-Id: I9c00e3d1b6e51d17bb290339c3f124d4d1c9e69f
181 lines
5.7 KiB
Go
181 lines
5.7 KiB
Go
// Copyright 2017 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 build
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
|
|
soong_metrics_proto "android/soong/ui/metrics/metrics_proto"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
"github.com/google/blueprint/microfactory"
|
|
|
|
"android/soong/ui/metrics"
|
|
"android/soong/ui/status"
|
|
)
|
|
|
|
func runSoong(ctx Context, config Config) {
|
|
ctx.BeginTrace(metrics.RunSoong, "soong")
|
|
defer ctx.EndTrace()
|
|
|
|
func() {
|
|
ctx.BeginTrace(metrics.RunSoong, "blueprint bootstrap")
|
|
defer ctx.EndTrace()
|
|
|
|
args := []string{"-n"}
|
|
if !config.skipSoongTests {
|
|
args = append(args, "-t")
|
|
}
|
|
|
|
cmd := Command(ctx, config, "blueprint bootstrap", "build/blueprint/bootstrap.bash", args...)
|
|
cmd.Environment.Set("BLUEPRINTDIR", "./build/blueprint")
|
|
cmd.Environment.Set("BOOTSTRAP", "./build/blueprint/bootstrap.bash")
|
|
cmd.Environment.Set("BUILDDIR", config.SoongOutDir())
|
|
cmd.Environment.Set("GOROOT", "./"+filepath.Join("prebuilts/go", config.HostPrebuiltTag()))
|
|
cmd.Environment.Set("BLUEPRINT_LIST_FILE", filepath.Join(config.FileListDir(), "Android.bp.list"))
|
|
cmd.Environment.Set("NINJA_BUILDDIR", config.OutDir())
|
|
cmd.Environment.Set("SRCDIR", ".")
|
|
cmd.Environment.Set("TOPNAME", "Android.bp")
|
|
cmd.Sandbox = soongSandbox
|
|
|
|
cmd.RunAndPrintOrFatal()
|
|
}()
|
|
|
|
func() {
|
|
ctx.BeginTrace(metrics.RunSoong, "environment check")
|
|
defer ctx.EndTrace()
|
|
|
|
envFile := filepath.Join(config.SoongOutDir(), ".soong.environment")
|
|
envTool := filepath.Join(config.SoongOutDir(), ".bootstrap/bin/soong_env")
|
|
if _, err := os.Stat(envFile); err == nil {
|
|
if _, err := os.Stat(envTool); err == nil {
|
|
cmd := Command(ctx, config, "soong_env", envTool, envFile)
|
|
cmd.Sandbox = soongSandbox
|
|
|
|
var buf strings.Builder
|
|
cmd.Stdout = &buf
|
|
cmd.Stderr = &buf
|
|
if err := cmd.Run(); err != nil {
|
|
ctx.Verboseln("soong_env failed, forcing manifest regeneration")
|
|
os.Remove(envFile)
|
|
}
|
|
|
|
if buf.Len() > 0 {
|
|
ctx.Verboseln(buf.String())
|
|
}
|
|
} else {
|
|
ctx.Verboseln("Missing soong_env tool, forcing manifest regeneration")
|
|
os.Remove(envFile)
|
|
}
|
|
} else if !os.IsNotExist(err) {
|
|
ctx.Fatalf("Failed to stat %f: %v", envFile, err)
|
|
}
|
|
}()
|
|
|
|
var cfg microfactory.Config
|
|
cfg.Map("github.com/google/blueprint", "build/blueprint")
|
|
|
|
cfg.TrimPath = absPath(ctx, ".")
|
|
|
|
func() {
|
|
ctx.BeginTrace(metrics.RunSoong, "minibp")
|
|
defer ctx.EndTrace()
|
|
|
|
minibp := filepath.Join(config.SoongOutDir(), ".minibootstrap/minibp")
|
|
if _, err := microfactory.Build(&cfg, minibp, "github.com/google/blueprint/bootstrap/minibp"); err != nil {
|
|
ctx.Fatalln("Failed to build minibp:", err)
|
|
}
|
|
}()
|
|
|
|
func() {
|
|
ctx.BeginTrace(metrics.RunSoong, "bpglob")
|
|
defer ctx.EndTrace()
|
|
|
|
bpglob := filepath.Join(config.SoongOutDir(), ".minibootstrap/bpglob")
|
|
if _, err := microfactory.Build(&cfg, bpglob, "github.com/google/blueprint/bootstrap/bpglob"); err != nil {
|
|
ctx.Fatalln("Failed to build bpglob:", err)
|
|
}
|
|
}()
|
|
|
|
ninja := func(name, file string) {
|
|
ctx.BeginTrace(metrics.RunSoong, name)
|
|
defer ctx.EndTrace()
|
|
|
|
fifo := filepath.Join(config.OutDir(), ".ninja_fifo")
|
|
nr := status.NewNinjaReader(ctx, ctx.Status.StartTool(), fifo)
|
|
defer nr.Close()
|
|
|
|
cmd := Command(ctx, config, "soong "+name,
|
|
config.PrebuiltBuildTool("ninja"),
|
|
"-d", "keepdepfile",
|
|
"-d", "stats",
|
|
"-o", "usesphonyoutputs=yes",
|
|
"-o", "preremoveoutputs=yes",
|
|
"-w", "dupbuild=err",
|
|
"-w", "outputdir=err",
|
|
"-w", "missingoutfile=err",
|
|
"-j", strconv.Itoa(config.Parallel()),
|
|
"--frontend_file", fifo,
|
|
"-f", filepath.Join(config.SoongOutDir(), file))
|
|
cmd.Environment.Set("SOONG_SANDBOX_SOONG_BUILD", "true")
|
|
cmd.Sandbox = soongSandbox
|
|
cmd.RunAndStreamOrFatal()
|
|
}
|
|
|
|
ninja("minibootstrap", ".minibootstrap/build.ninja")
|
|
ninja("bootstrap", ".bootstrap/build.ninja")
|
|
|
|
soongBuildMetrics := loadSoongBuildMetrics(ctx, config)
|
|
logSoongBuildMetrics(ctx, soongBuildMetrics)
|
|
|
|
distGzipFile(ctx, config, config.SoongNinjaFile(), "soong")
|
|
|
|
if !config.SkipMake() {
|
|
distGzipFile(ctx, config, config.SoongAndroidMk(), "soong")
|
|
distGzipFile(ctx, config, config.SoongMakeVarsMk(), "soong")
|
|
}
|
|
|
|
if ctx.Metrics != nil {
|
|
ctx.Metrics.SetSoongBuildMetrics(soongBuildMetrics)
|
|
}
|
|
}
|
|
|
|
func loadSoongBuildMetrics(ctx Context, config Config) *soong_metrics_proto.SoongBuildMetrics {
|
|
soongBuildMetricsFile := filepath.Join(config.OutDir(), "soong", "soong_build_metrics.pb")
|
|
buf, err := ioutil.ReadFile(soongBuildMetricsFile)
|
|
if err != nil {
|
|
ctx.Fatalf("Failed to load %s: %s", soongBuildMetricsFile, err)
|
|
}
|
|
soongBuildMetrics := &soong_metrics_proto.SoongBuildMetrics{}
|
|
err = proto.Unmarshal(buf, soongBuildMetrics)
|
|
if err != nil {
|
|
ctx.Fatalf("Failed to unmarshal %s: %s", soongBuildMetricsFile, err)
|
|
}
|
|
return soongBuildMetrics
|
|
}
|
|
|
|
func logSoongBuildMetrics(ctx Context, metrics *soong_metrics_proto.SoongBuildMetrics) {
|
|
ctx.Verbosef("soong_build metrics:")
|
|
ctx.Verbosef(" modules: %v", metrics.GetModules())
|
|
ctx.Verbosef(" variants: %v", metrics.GetVariants())
|
|
ctx.Verbosef(" max heap size: %v MB", metrics.GetMaxHeapSize()/1e6)
|
|
ctx.Verbosef(" total allocation count: %v", metrics.GetTotalAllocCount())
|
|
ctx.Verbosef(" total allocation size: %v MB", metrics.GetTotalAllocSize()/1e6)
|
|
|
|
}
|