| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 'arch': ['32bit', '64bit'], | 123 'arch': ['32bit', '64bit'], |
| 124 'buildtype': ['official'], | 124 'buildtype': ['official'], |
| 125 'direct_archive': 1, | 125 'direct_archive': 1, |
| 126 }, | 126 }, |
| 127 # Flash Player files: | 127 # Flash Player files: |
| 128 # Pepper Flash Player files: | 128 # Pepper Flash Player files: |
| 129 { | 129 { |
| 130 'filename': 'PepperFlash', | 130 'filename': 'PepperFlash', |
| 131 'buildtype': ['official'], | 131 'buildtype': ['official'], |
| 132 }, | 132 }, |
| 133 # PDF Plugin files: | |
| 134 { | |
| 135 'filename': 'libpdf.so', | |
| 136 'buildtype': ['dev', 'official'], | |
| 137 }, | |
| 138 # Native Client plugin files: | 133 # Native Client plugin files: |
| 139 { | 134 { |
| 140 'filename': 'nacl_irt_x86_32.nexe', | 135 'filename': 'nacl_irt_x86_32.nexe', |
| 141 'arch': ['32bit'], | 136 'arch': ['32bit'], |
| 142 'buildtype': ['dev', 'official'], | 137 'buildtype': ['dev', 'official'], |
| 143 }, | 138 }, |
| 144 { | 139 { |
| 145 'filename': 'nacl_irt_x86_64.nexe', | 140 'filename': 'nacl_irt_x86_64.nexe', |
| 146 'arch': ['64bit'], | 141 'arch': ['64bit'], |
| 147 'buildtype': ['dev', 'official'], | 142 'buildtype': ['dev', 'official'], |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 'buildtype': ['official'], | 183 'buildtype': ['official'], |
| 189 'archive': 'breakpad-info.zip', | 184 'archive': 'breakpad-info.zip', |
| 190 }, | 185 }, |
| 191 { | 186 { |
| 192 'filename': 'chrome.breakpad.x64', | 187 'filename': 'chrome.breakpad.x64', |
| 193 'arch': ['64bit'], | 188 'arch': ['64bit'], |
| 194 'buildtype': ['official'], | 189 'buildtype': ['official'], |
| 195 'archive': 'breakpad-info.zip', | 190 'archive': 'breakpad-info.zip', |
| 196 }, | 191 }, |
| 197 { | 192 { |
| 198 'filename': 'libpdf.so.breakpad.ia32', | |
| 199 'arch': ['32bit'], | |
| 200 'buildtype': ['official'], | |
| 201 'archive': 'breakpad-info.zip', | |
| 202 }, | |
| 203 { | |
| 204 'filename': 'libpdf.so.breakpad.x64', | |
| 205 'arch': ['64bit'], | |
| 206 'buildtype': ['official'], | |
| 207 'archive': 'breakpad-info.zip', | |
| 208 }, | |
| 209 { | |
| 210 'filename': 'nacl_irt_x86_32.nexe.debug', | 193 'filename': 'nacl_irt_x86_32.nexe.debug', |
| 211 'arch': ['32bit'], | 194 'arch': ['32bit'], |
| 212 'buildtype': ['official'], | 195 'buildtype': ['official'], |
| 213 'archive': 'chrome-linux-nacl-irt-syms.zip', | 196 'archive': 'chrome-linux-nacl-irt-syms.zip', |
| 214 }, | 197 }, |
| 215 { | 198 { |
| 216 'filename': 'nacl_irt_x86_64.nexe.debug', | 199 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 217 'arch': ['64bit'], | 200 'arch': ['64bit'], |
| 218 'buildtype': ['official'], | 201 'buildtype': ['official'], |
| 219 'archive': 'chrome-linux-nacl-irt-syms.zip', | 202 'archive': 'chrome-linux-nacl-irt-syms.zip', |
| 220 }, | 203 }, |
| 221 ] | 204 ] |
| OLD | NEW |