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 20 matching lines...) Expand all Loading... |
31 'buildtype': ['dev'], | 31 'buildtype': ['dev'], |
32 }, | 32 }, |
33 { | 33 { |
34 'filename': 'Google Chrome.app', | 34 'filename': 'Google Chrome.app', |
35 'buildtype': ['official'], | 35 'buildtype': ['official'], |
36 }, | 36 }, |
37 { | 37 { |
38 'filename': 'Google Chrome Packaging', | 38 'filename': 'Google Chrome Packaging', |
39 'buildtype': ['official'], | 39 'buildtype': ['official'], |
40 }, | 40 }, |
| 41 { |
| 42 'filename': 'Google Chrome Packaging', |
| 43 'buildtype': ['official'], |
| 44 'archive': 'packaging.zip', |
| 45 }, |
41 # PNaCl translator (archive only, component updater used for shipping). | 46 # PNaCl translator (archive only, component updater used for shipping). |
42 { | 47 { |
43 'filename': 'pnacl', | 48 'filename': 'pnacl', |
44 'buildtype': ['dev', 'official'], | 49 'buildtype': ['dev', 'official'], |
45 'archive': 'pnacl.zip', | 50 'archive': 'pnacl.zip', |
46 }, | 51 }, |
47 # Browser tests: | 52 # Browser tests: |
48 { | 53 { |
49 'filename': 'browser_tests', | 54 'filename': 'browser_tests', |
50 'buildtype': ['dev', 'official'], | 55 'buildtype': ['dev', 'official'], |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 'archive': 'content-shell.zip', | 115 'archive': 'content-shell.zip', |
111 'optional': ['dev'], | 116 'optional': ['dev'], |
112 }, | 117 }, |
113 { | 118 { |
114 'filename': 'resources', | 119 'filename': 'resources', |
115 'buildtype': ['dev'], | 120 'buildtype': ['dev'], |
116 'archive': 'content-shell.zip', | 121 'archive': 'content-shell.zip', |
117 'optional': ['dev'], | 122 'optional': ['dev'], |
118 }, | 123 }, |
119 ] | 124 ] |
OLD | NEW |