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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
116 'filename': 'nacl_irt_x86_64.nexe', | 116 'filename': 'nacl_irt_x86_64.nexe', |
117 'arch': ['64bit'], | 117 'arch': ['64bit'], |
118 'buildtype': ['dev', 'official'], | 118 'buildtype': ['dev', 'official'], |
119 }, | 119 }, |
120 { | 120 { |
121 'filename': 'nacl_irt_arm.nexe', | 121 'filename': 'nacl_irt_arm.nexe', |
122 'arch': ['arm'], | 122 'arch': ['arm'], |
123 'buildtype': ['dev', 'official'], | 123 'buildtype': ['dev', 'official'], |
124 }, | 124 }, |
125 { | 125 { |
126 'filename': 'nacl_irt_srpc_x86_32.nexe', | |
127 'arch': ['32bit'], | |
128 'buildtype': ['dev', 'official'], | |
129 }, | |
130 { | |
131 'filename': 'nacl_irt_srpc_x86_64.nexe', | |
132 'arch': ['64bit'], | |
133 'buildtype': ['dev', 'official'], | |
134 }, | |
135 { | |
136 'filename': 'nacl_irt_srpc_arm.nexe', | 126 'filename': 'nacl_irt_srpc_arm.nexe', |
jvoung - send to chromium...
2013/01/15 22:17:33
Just happened to notice this while looking through
bbudge
2013/01/15 22:22:23
Indeed. I'll create another issue. Ugh.
| |
137 'arch': ['arm'], | 127 'arch': ['arm'], |
138 'buildtype': ['dev', 'official'], | 128 'buildtype': ['dev', 'official'], |
139 }, | 129 }, |
140 { | 130 { |
141 'filename': 'nacl_helper', | 131 'filename': 'nacl_helper', |
142 'buildtype': ['dev', 'official'], | 132 'buildtype': ['dev', 'official'], |
143 }, | 133 }, |
144 { | 134 { |
145 'filename': 'nacl_helper_bootstrap', | 135 'filename': 'nacl_helper_bootstrap', |
146 'buildtype': ['dev', 'official'], | 136 'buildtype': ['dev', 'official'], |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
182 'buildtype': ['official'], | 172 'buildtype': ['official'], |
183 'archive': 'breakpad-info.zip', | 173 'archive': 'breakpad-info.zip', |
184 }, | 174 }, |
185 { | 175 { |
186 'filename': 'libremoting_host_plugin.x64.so.breakpad.x64', | 176 'filename': 'libremoting_host_plugin.x64.so.breakpad.x64', |
187 'arch': ['64bit'], | 177 'arch': ['64bit'], |
188 'buildtype': ['official'], | 178 'buildtype': ['official'], |
189 'archive': 'breakpad-info.zip', | 179 'archive': 'breakpad-info.zip', |
190 }, | 180 }, |
191 ] | 181 ] |
OLD | NEW |