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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 'filename': 'nacl_irt_x86_32.nexe', | 102 'filename': 'nacl_irt_x86_32.nexe', |
103 'arch': ['32bit'], | 103 'arch': ['32bit'], |
104 'buildtype': ['dev', 'official'], | 104 'buildtype': ['dev', 'official'], |
105 }, | 105 }, |
106 { | 106 { |
107 'filename': 'nacl_irt_x86_64.nexe', | 107 'filename': 'nacl_irt_x86_64.nexe', |
108 'arch': ['64bit'], | 108 'arch': ['64bit'], |
109 'buildtype': ['dev', 'official'], | 109 'buildtype': ['dev', 'official'], |
110 }, | 110 }, |
111 { | 111 { |
112 'filename': 'nacl_irt_srpc_x86_32.nexe', | |
113 'arch': ['32bit'], | |
114 'buildtype': ['dev', 'official'], | |
115 }, | |
116 { | |
117 'filename': 'nacl_irt_srpc_x86_64.nexe', | |
118 'arch': ['64bit'], | |
119 'buildtype': ['dev', 'official'], | |
120 }, | |
121 { | |
122 'filename': 'nacl_helper', | 112 'filename': 'nacl_helper', |
123 'buildtype': ['dev', 'official'], | 113 'buildtype': ['dev', 'official'], |
124 }, | 114 }, |
125 { | 115 { |
126 'filename': 'nacl_helper_bootstrap', | 116 'filename': 'nacl_helper_bootstrap', |
127 'buildtype': ['dev', 'official'], | 117 'buildtype': ['dev', 'official'], |
128 }, | 118 }, |
129 ] | 119 ] |
OLD | NEW |