| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 'filename': 'PepperFlash', | 122 'filename': 'PepperFlash', |
| 123 'buildtype': ['official'], | 123 'buildtype': ['official'], |
| 124 }, | 124 }, |
| 125 # PDF Plugin files: | 125 # PDF Plugin files: |
| 126 { | 126 { |
| 127 'filename': 'libpdf.so', | 127 'filename': 'libpdf.so', |
| 128 'buildtype': ['dev', 'official'], | 128 'buildtype': ['dev', 'official'], |
| 129 }, | 129 }, |
| 130 # Native Client plugin files: | 130 # Native Client plugin files: |
| 131 { | 131 { |
| 132 'filename': 'libppGoogleNaClPluginChrome.so', | |
| 133 'buildtype': ['dev', 'official'], | |
| 134 }, | |
| 135 { | |
| 136 'filename': 'nacl_irt_x86_32.nexe', | 132 'filename': 'nacl_irt_x86_32.nexe', |
| 137 'arch': ['32bit'], | 133 'arch': ['32bit'], |
| 138 'buildtype': ['dev', 'official'], | 134 'buildtype': ['dev', 'official'], |
| 139 }, | 135 }, |
| 140 { | 136 { |
| 141 'filename': 'nacl_irt_x86_64.nexe', | 137 'filename': 'nacl_irt_x86_64.nexe', |
| 142 'arch': ['64bit'], | 138 'arch': ['64bit'], |
| 143 'buildtype': ['dev', 'official'], | 139 'buildtype': ['dev', 'official'], |
| 144 }, | 140 }, |
| 145 { | 141 { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 'buildtype': ['official'], | 209 'buildtype': ['official'], |
| 214 'archive': 'chrome-linux-nacl-irt-syms.zip', | 210 'archive': 'chrome-linux-nacl-irt-syms.zip', |
| 215 }, | 211 }, |
| 216 { | 212 { |
| 217 'filename': 'nacl_irt_x86_64.nexe.debug', | 213 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 218 'arch': ['64bit'], | 214 'arch': ['64bit'], |
| 219 'buildtype': ['official'], | 215 'buildtype': ['official'], |
| 220 'archive': 'chrome-linux-nacl-irt-syms.zip', | 216 'archive': 'chrome-linux-nacl-irt-syms.zip', |
| 221 }, | 217 }, |
| 222 ] | 218 ] |
| OLD | NEW |