OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 | 3 |
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
7 | 7 |
8 # This is a buildbot configuration file containing a tagged list of files | 8 # This is a buildbot configuration file containing a tagged list of files |
9 # processed by the stage/archive scripts. The known tags are: | 9 # processed by the stage/archive scripts. The known tags are: |
10 # | 10 # |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 'buildtype': ['dev', 'official'], | 159 'buildtype': ['dev', 'official'], |
160 }, | 160 }, |
161 # PNaCl translator (archive only, component updater used for shipping). | 161 # PNaCl translator (archive only, component updater used for shipping). |
162 { | 162 { |
163 'filename': 'pnacl', | 163 'filename': 'pnacl', |
164 'buildtype': ['dev', 'official'], | 164 'buildtype': ['dev', 'official'], |
165 'archive': 'pnacl.zip', | 165 'archive': 'pnacl.zip', |
166 }, | 166 }, |
167 # Remoting files: | 167 # Remoting files: |
168 { | 168 { |
169 'filename': 'remoting-webapp.zip', | |
170 'buildtype': ['dev', 'official'], | |
171 'archive': 'remoting-webapp.zip', | |
172 }, | |
173 { | |
174 'filename': 'remoting-webapp.v2.zip', | 169 'filename': 'remoting-webapp.v2.zip', |
175 'buildtype': ['dev', 'official'], | 170 'buildtype': ['dev', 'official'], |
176 'archive': 'remoting-webapp.v2.zip', | 171 'archive': 'remoting-webapp.v2.zip', |
177 }, | 172 }, |
178 { | 173 { |
179 'filename': 'remoting-me2me-host-linux.zip', | 174 'filename': 'remoting-me2me-host-linux.zip', |
180 'buildtype': ['official'], | 175 'buildtype': ['official'], |
181 'archive': 'remoting-me2me-host-linux.zip', | 176 'archive': 'remoting-me2me-host-linux.zip', |
182 }, | 177 }, |
183 # Breakpad symbols: | 178 # Breakpad symbols: |
(...skipping 15 matching lines...) Expand all Loading... |
199 'buildtype': ['official'], | 194 'buildtype': ['official'], |
200 'archive': 'chrome-linux-nacl-irt-syms.zip', | 195 'archive': 'chrome-linux-nacl-irt-syms.zip', |
201 }, | 196 }, |
202 { | 197 { |
203 'filename': 'nacl_irt_x86_64.nexe.debug', | 198 'filename': 'nacl_irt_x86_64.nexe.debug', |
204 'arch': ['64bit'], | 199 'arch': ['64bit'], |
205 'buildtype': ['official'], | 200 'buildtype': ['official'], |
206 'archive': 'chrome-linux-nacl-irt-syms.zip', | 201 'archive': 'chrome-linux-nacl-irt-syms.zip', |
207 }, | 202 }, |
208 ] | 203 ] |
OLD | NEW |