aboutsummaryrefslogtreecommitdiffstats
path: root/ui/tracer/tracer.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/tracer/tracer.go')
-rw-r--r--ui/tracer/tracer.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/tracer/tracer.go b/ui/tracer/tracer.go
index 87050403..b8fc87b2 100644
--- a/ui/tracer/tracer.go
+++ b/ui/tracer/tracer.go
@@ -31,6 +31,7 @@ import (
"time"
"android/soong/ui/logger"
+ "android/soong/ui/status"
)
type Thread uint64
@@ -46,7 +47,8 @@ type Tracer interface {
Complete(name string, thread Thread, begin, end uint64)
ImportMicrofactoryLog(filename string)
- ImportNinjaLog(thread Thread, filename string, startOffset time.Time)
+
+ StatusTracer() status.StatusOutput
NewThread(name string) Thread
}