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 18 matching lines...) Expand all Loading... |
29 FILES = [ | 29 FILES = [ |
30 { | 30 { |
31 'filename': 'chrome', | 31 'filename': 'chrome', |
32 'buildtype': ['dev', 'official'], | 32 'buildtype': ['dev', 'official'], |
33 }, | 33 }, |
34 { | 34 { |
35 'filename': 'chrome-wrapper', | 35 'filename': 'chrome-wrapper', |
36 'buildtype': ['dev', 'official'], | 36 'buildtype': ['dev', 'official'], |
37 }, | 37 }, |
38 { | 38 { |
| 39 'filename': 'chrome.pak', |
| 40 'buildtype': ['dev', 'official'], |
| 41 }, |
| 42 { |
39 'filename': 'chrome_100_percent.pak', | 43 'filename': 'chrome_100_percent.pak', |
40 'buildtype': ['dev', 'official'], | 44 'buildtype': ['dev', 'official'], |
41 }, | 45 }, |
42 { | 46 { |
43 'filename': 'chrome_sandbox', | 47 'filename': 'chrome_sandbox', |
44 'buildtype': ['dev', 'official'], | 48 'buildtype': ['dev', 'official'], |
45 }, | 49 }, |
46 { | 50 { |
47 'filename': 'chrome.1', | 51 'filename': 'chrome.1', |
48 'buildtype': ['dev', 'official'], | 52 'buildtype': ['dev', 'official'], |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 'buildtype': ['official'], | 219 'buildtype': ['official'], |
216 'archive': 'chrome-linux-nacl-irt-syms.zip', | 220 'archive': 'chrome-linux-nacl-irt-syms.zip', |
217 }, | 221 }, |
218 { | 222 { |
219 'filename': 'nacl_irt_x86_64.nexe.debug', | 223 'filename': 'nacl_irt_x86_64.nexe.debug', |
220 'arch': ['64bit'], | 224 'arch': ['64bit'], |
221 'buildtype': ['official'], | 225 'buildtype': ['official'], |
222 'archive': 'chrome-linux-nacl-irt-syms.zip', | 226 'archive': 'chrome-linux-nacl-irt-syms.zip', |
223 }, | 227 }, |
224 ] | 228 ] |
OLD | NEW |