| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'filename': 'libGLESv2.so', | 120 'filename': 'libGLESv2.so', |
| 121 'buildtype': ['dev'], | 121 'buildtype': ['dev'], |
| 122 }, | 122 }, |
| 123 { | 123 { |
| 124 'filename': 'libEGL.so', | 124 'filename': 'libEGL.so', |
| 125 'buildtype': ['dev'], | 125 'buildtype': ['dev'], |
| 126 }, | 126 }, |
| 127 # SwiftShader files: | 127 # SwiftShader files: |
| 128 { | 128 { |
| 129 'filename': 'swiftshader/libGLESv2.so', | 129 'filename': 'swiftshader/libGLESv2.so', |
| 130 'buildtype': ['dev, 'official''], | 130 'buildtype': ['dev', 'official'], |
| 131 }, | 131 }, |
| 132 { | 132 { |
| 133 'filename': 'swiftshader/libEGL.so', | 133 'filename': 'swiftshader/libEGL.so', |
| 134 'buildtype': ['dev', 'official'], | 134 'buildtype': ['dev', 'official'], |
| 135 }, | 135 }, |
| 136 # Native Client plugin files: | 136 # Native Client plugin files: |
| 137 { | 137 { |
| 138 'filename': 'nacl_irt_x86_32.nexe', | 138 'filename': 'nacl_irt_x86_32.nexe', |
| 139 'arch': ['32bit'], | 139 'arch': ['32bit'], |
| 140 'buildtype': ['dev', 'official'], | 140 'buildtype': ['dev', 'official'], |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 'archive': 'content-shell.zip', | 282 'archive': 'content-shell.zip', |
| 283 'optional': ['dev'], | 283 'optional': ['dev'], |
| 284 }, | 284 }, |
| 285 { | 285 { |
| 286 'filename': 'resources', | 286 'filename': 'resources', |
| 287 'buildtype': ['dev'], | 287 'buildtype': ['dev'], |
| 288 'archive': 'content-shell.zip', | 288 'archive': 'content-shell.zip', |
| 289 'optional': ['dev'], | 289 'optional': ['dev'], |
| 290 }, | 290 }, |
| 291 ] | 291 ] |
| OLD | NEW |