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