| Index: build/android/pylib/buildbot_report.py
|
| diff --git a/build/android/pylib/buildbot_report.py b/build/android/pylib/buildbot_report.py
|
| index 1e549de391504e664b6b7e971cd26a72b288b8e6..fe3fcd638eaf328d9290ad72454eb4a4cbe55667 100644
|
| --- a/build/android/pylib/buildbot_report.py
|
| +++ b/build/android/pylib/buildbot_report.py
|
| @@ -23,6 +23,15 @@ def PrintMsg(msg):
|
| print '@@@STEP_TEXT@%s@@@' % msg
|
|
|
|
|
| +def PrintSummaryText(msg):
|
| + """Appends |msg| to main build summary. Visible from waterfall.
|
| +
|
| + Args:
|
| + msg: String to be appended.
|
| + """
|
| + print '@@@STEP_SUMMARY_TEXT@%s@@@' % msg
|
| +
|
| +
|
| def PrintError():
|
| """Marks the current step as failed."""
|
| print '@@@STEP_FAILURE@@@'
|
|
|