| Index: build/android/pylib/buildbot_report.py
|
| diff --git a/build/android/pylib/buildbot_report.py b/build/android/pylib/buildbot_report.py
|
| index fdb520311b0a0c6c38fe845d0585970b49f618b8..1e549de391504e664b6b7e971cd26a72b288b8e6 100644
|
| --- a/build/android/pylib/buildbot_report.py
|
| +++ b/build/android/pylib/buildbot_report.py
|
| @@ -26,3 +26,12 @@ def PrintMsg(msg):
|
| def PrintError():
|
| """Marks the current step as failed."""
|
| print '@@@STEP_FAILURE@@@'
|
| +
|
| +
|
| +def PrintWarning():
|
| + """Marks the current step with a warning."""
|
| + print '@@@STEP_WARNINGS@@@'
|
| +
|
| +
|
| +def PrintNamedStep(step):
|
| + print '@@@BUILD_STEP %s@@@' % step
|
|
|