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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 ) | 46 ) |
47 | 47 |
48 yield ( | 48 yield ( |
49 api.test('boringssl-docs-gerrit') + | 49 api.test('boringssl-docs-gerrit') + |
50 api.properties.tryserver( | 50 api.properties.tryserver( |
51 gerrit_project='boringssl', | 51 gerrit_project='boringssl', |
52 gerrit_url='https://boringssl-review.googlesource.com', | 52 gerrit_url='https://boringssl-review.googlesource.com', |
53 mastername='actually-no-master', buildername='docs', | 53 mastername='actually-no-master', buildername='docs', |
54 slavename='swarming-slave') | 54 slavename='swarming-slave') |
55 ) | 55 ) |
56 yield ( | |
57 api.test('boringssl-docs-gerrit-deprecated') + | |
58 api.properties.tryserver_gerrit( | |
59 gerrit_host='boringssl-review.googlesource.com', | |
60 full_project_name='boringssl', | |
61 mastername='actually-no-master', buildername='docs', | |
62 slavename='swarming-slave') | |
63 ) | |
OLD | NEW |