Forward descriptions to primary build invocations. am: 8e7786a0fd am: 1f77f7af15 am: 629b9fa603

Original change: https://android-review.googlesource.com/c/platform/build/blueprint/+/1911018

Change-Id: Ibc13f2600b10544dfbdc429c82e557a8a55f8d74
This commit is contained in:
Jingwen Chen 2021-12-07 02:00:18 +00:00 committed by Automerger Merge Worker
commit ed30b8ceb1
2 changed files with 6 additions and 4 deletions

View file

@ -691,7 +691,8 @@ func (s *singleton) GenerateBuildActions(ctx blueprint.SingletonContext) {
// soong_ui explicitly requests what it wants to be build. This is
// because the same Ninja file contains instructions to run
// soong_build, run bp2build and to generate the JSON module graph.
Optional: true,
Optional: true,
Description: i.Description,
})
}

View file

@ -105,7 +105,8 @@ const (
)
type PrimaryBuilderInvocation struct {
Inputs []string
Outputs []string
Args []string
Inputs []string
Outputs []string
Args []string
Description string
}