| 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': 'nacl_irt_x86_32.nexe', | 120 'filename': 'nacl_irt_x86_32.nexe', |
| 121 'arch': ['32bit'], | 121 'arch': ['32bit'], |
| 122 'buildtype': ['dev', 'official'], | 122 'buildtype': ['dev', 'official'], |
| 123 }, | 123 }, |
| 124 { | 124 { |
| 125 'filename': 'nacl_irt_x86_64.nexe', | 125 'filename': 'nacl_irt_x86_64.nexe', |
| 126 'arch': ['64bit'], | 126 'arch': ['64bit'], |
| 127 'buildtype': ['dev', 'official'], | 127 'buildtype': ['dev', 'official'], |
| 128 }, | 128 }, |
| 129 { | 129 { |
| 130 'filename': 'nacl_ipc_irt_x86_32.nexe', | 130 'filename': 'nacl_irt_srpc_x86_32.nexe', |
| 131 'arch': ['32bit'], | 131 'arch': ['32bit'], |
| 132 'buildtype': ['dev', 'official'], | 132 'buildtype': ['dev', 'official'], |
| 133 }, | 133 }, |
| 134 { | 134 { |
| 135 'filename': 'nacl_ipc_irt_x86_64.nexe', | 135 'filename': 'nacl_irt_srpc_x86_64.nexe', |
| 136 'arch': ['64bit'], | 136 'arch': ['64bit'], |
| 137 'buildtype': ['dev', 'official'], | 137 'buildtype': ['dev', 'official'], |
| 138 }, | 138 }, |
| 139 { | 139 { |
| 140 'filename': 'nacl_helper', | 140 'filename': 'nacl_helper', |
| 141 'arch': ['32bit', '64bit'], | 141 'arch': ['32bit', '64bit'], |
| 142 'buildtype': ['dev', 'official'], | 142 'buildtype': ['dev', 'official'], |
| 143 }, | 143 }, |
| 144 { | 144 { |
| 145 'filename': 'nacl_helper_bootstrap', | 145 'filename': 'nacl_helper_bootstrap', |
| 146 'arch': ['32bit', '64bit'], | 146 'arch': ['32bit', '64bit'], |
| 147 'buildtype': ['dev', 'official'], | 147 'buildtype': ['dev', 'official'], |
| 148 }, | 148 }, |
| 149 ] | 149 ] |
| OLD | NEW |