| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file | 3 # found in the LICENSE file |
| 4 | 4 |
| 5 """Entry point for the AddIn build bot. | 5 """Entry point for the AddIn build bot. |
| 6 | 6 |
| 7 Perform build steps and output results using the buildbot | 7 Perform build steps and output results using the buildbot |
| 8 annootator syntax | 8 annootator syntax |
| 9 """ | 9 """ |
| 10 | 10 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 def main(): | 182 def main(): |
| 183 StepBuild() | 183 StepBuild() |
| 184 StepInstall() | 184 StepInstall() |
| 185 StepInstallSDK() | 185 StepInstallSDK() |
| 186 StepTest() | 186 StepTest() |
| 187 StepArchive() | 187 StepArchive() |
| 188 | 188 |
| 189 | 189 |
| 190 if __name__ == '__main__': | 190 if __name__ == '__main__': |
| 191 main() | 191 main() |
| OLD | NEW |