| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 'buildtype': ['dev', 'official'], | 148 'buildtype': ['dev', 'official'], |
| 149 }, | 149 }, |
| 150 { | 150 { |
| 151 'filename': 'nacl_helper', | 151 'filename': 'nacl_helper', |
| 152 'buildtype': ['dev', 'official'], | 152 'buildtype': ['dev', 'official'], |
| 153 }, | 153 }, |
| 154 { | 154 { |
| 155 'filename': 'nacl_helper_bootstrap', | 155 'filename': 'nacl_helper_bootstrap', |
| 156 'buildtype': ['dev', 'official'], | 156 'buildtype': ['dev', 'official'], |
| 157 }, | 157 }, |
| 158 # PNaCl translator (only for dev builds, components use for shipping). |
| 159 { |
| 160 'filename': 'pnacl', |
| 161 'buildtype': ['dev'], |
| 162 }, |
| 158 # Remoting files: | 163 # Remoting files: |
| 159 { | 164 { |
| 160 'filename': 'remoting-webapp.zip', | 165 'filename': 'remoting-webapp.zip', |
| 161 'buildtype': ['dev', 'official'], | 166 'buildtype': ['dev', 'official'], |
| 162 'archive': 'remoting-webapp.zip', | 167 'archive': 'remoting-webapp.zip', |
| 163 }, | 168 }, |
| 164 { | 169 { |
| 165 'filename': 'remoting-webapp.v2.zip', | 170 'filename': 'remoting-webapp.v2.zip', |
| 166 'buildtype': ['dev', 'official'], | 171 'buildtype': ['dev', 'official'], |
| 167 'archive': 'remoting-webapp.v2.zip', | 172 'archive': 'remoting-webapp.v2.zip', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 'buildtype': ['official'], | 219 'buildtype': ['official'], |
| 215 'archive': 'chrome-linux-nacl-irt-syms.zip', | 220 'archive': 'chrome-linux-nacl-irt-syms.zip', |
| 216 }, | 221 }, |
| 217 { | 222 { |
| 218 'filename': 'nacl_irt_x86_64.nexe.debug', | 223 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 219 'arch': ['64bit'], | 224 'arch': ['64bit'], |
| 220 'buildtype': ['official'], | 225 'buildtype': ['official'], |
| 221 'archive': 'chrome-linux-nacl-irt-syms.zip', | 226 'archive': 'chrome-linux-nacl-irt-syms.zip', |
| 222 }, | 227 }, |
| 223 ] | 228 ] |
| OLD | NEW |