aboutsummaryrefslogtreecommitdiffstats
path: root/genrule
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-05-09 13:45:28 -0700
committerColin Cross <ccross@android.com>2017-05-10 11:04:16 -0700
commit67a5c132c53ce0715f4d169fc26dd537294feaca (patch)
tree03b682110bcc16e74c5884a561df44c359c0b3ae /genrule
parent570e18ffaa4cc389f28d42c4ce9d4d213e21be34 (diff)
downloadbuild_soong-67a5c132c53ce0715f4d169fc26dd537294feaca.tar.gz
build_soong-67a5c132c53ce0715f4d169fc26dd537294feaca.tar.bz2
build_soong-67a5c132c53ce0715f4d169fc26dd537294feaca.zip
Prettify soong ninja build descriptions
Descriptions currently look like: [ 0% 4/29328] cc out-soong/.intermediates/external/clang/lib/Sema/libclangSema/android_arm_armv7-a-neon_denver_static_core/obj/external/clang/lib/Sema/SemaCodeComplete.o This is not very helpful - most of the characters are used to show the output path, which contains useful information like target architecture, but also contains most of the path to the source files twice, and less useful information like the exact variant name used by soong. Make the descriptions look like: [ 0% 3/29329] //external/clang/lib/Sema:libclangSema clang++ SemaTemplateInstantiate.cpp This is //path/to/module:modulename tool relative/path/to/source/file Test: builds, looks pretty Change-Id: I3087aa7d4eb1860ef6239d77407b8b35445616d7
Diffstat (limited to 'genrule')
-rw-r--r--genrule/genrule.go14
1 files changed, 10 insertions, 4 deletions
diff --git a/genrule/genrule.go b/genrule/genrule.go
index 68077616..2ff018f5 100644
--- a/genrule/genrule.go
+++ b/genrule/genrule.go
@@ -218,11 +218,17 @@ func (g *generator) GenerateAndroidBuildActions(ctx android.ModuleContext) {
}
func (g *generator) generateSourceFile(ctx android.ModuleContext, task generateTask) {
+ desc := "generate"
+ if len(task.out) == 1 {
+ desc += " " + task.out[0].Base()
+ }
+
params := android.ModuleBuildParams{
- Rule: g.rule,
- Outputs: task.out,
- Inputs: task.in,
- Implicits: g.deps,
+ Rule: g.rule,
+ Description: "generate",
+ Outputs: task.out,
+ Inputs: task.in,
+ Implicits: g.deps,
}
if g.properties.Depfile {
depfile := android.GenPathWithExt(ctx, "", task.out[0], task.out[0].Ext()+".d")