| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 """Generates BoringSSL documentation and uploads it to Cloud Storage.""" | 5 """Generates BoringSSL documentation and uploads it to Cloud Storage.""" |
| 6 | 6 |
| 7 | 7 |
| 8 DEPS = [ | 8 DEPS = [ |
| 9 'chromium', | 9 'chromium', |
| 10 'depot_tools/bot_update', | 10 'depot_tools/bot_update', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 def GenTests(api): | 40 def GenTests(api): |
| 41 yield ( | 41 yield ( |
| 42 api.test('boringssl-docs') + | 42 api.test('boringssl-docs') + |
| 43 api.properties.generic(mastername='client.boringssl', | 43 api.properties.generic(mastername='client.boringssl', |
| 44 buildername='docs', | 44 buildername='docs', |
| 45 slavename='slavename') | 45 slavename='slavename') |
| 46 ) | 46 ) |
| 47 | 47 |
| 48 yield ( | 48 yield ( |
| 49 api.test('boringssl-docs-gerrit') + | 49 api.test('boringssl-docs-gerrit') + |
| 50 api.properties.tryserver( |
| 51 gerrit_project='boringssl', |
| 52 gerrit_url='https://boringssl-review.googlesource.com', |
| 53 mastername='actually-no-master', buildername='docs', |
| 54 slavename='swarming-slave') |
| 55 ) |
| 56 yield ( |
| 57 api.test('boringssl-docs-gerrit-deprecated') + |
| 50 api.properties.tryserver_gerrit( | 58 api.properties.tryserver_gerrit( |
| 51 gerrit_host='boringssl-review.googlesource.com', | 59 gerrit_host='boringssl-review.googlesource.com', |
| 52 full_project_name='boringssl', | 60 full_project_name='boringssl', |
| 53 mastername='actually-no-master', buildername='docs', | 61 mastername='actually-no-master', buildername='docs', |
| 54 slavename='swarming-slave') | 62 slavename='swarming-slave') |
| 55 ) | 63 ) |
| OLD | NEW |