| 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 26 matching lines...) Expand all Loading... |
| 37 { | 37 { |
| 38 'filename': 'Google Chrome Packaging', | 38 'filename': 'Google Chrome Packaging', |
| 39 'buildtype': ['official'], | 39 'buildtype': ['official'], |
| 40 }, | 40 }, |
| 41 # PNaCl translator (archive only, component updater used for shipping). | 41 # PNaCl translator (archive only, component updater used for shipping). |
| 42 { | 42 { |
| 43 'filename': 'pnacl', | 43 'filename': 'pnacl', |
| 44 'buildtype': ['dev', 'official'], | 44 'buildtype': ['dev', 'official'], |
| 45 'archive': 'pnacl.zip', | 45 'archive': 'pnacl.zip', |
| 46 }, | 46 }, |
| 47 # Browser tests: |
| 48 { |
| 49 'filename': 'browser_tests', |
| 50 'buildtype': ['dev', 'official'], |
| 51 'archive': 'browser_tests', |
| 52 }, |
| 47 # Remoting files: | 53 # Remoting files: |
| 48 { | 54 { |
| 49 'filename': 'remoting-webapp.zip', | 55 'filename': 'remoting-webapp.zip', |
| 50 'buildtype': ['dev', 'official'], | 56 'buildtype': ['dev', 'official'], |
| 51 'archive': 'remoting-webapp.zip', | 57 'archive': 'remoting-webapp.zip', |
| 52 }, | 58 }, |
| 53 { | 59 { |
| 54 'filename': 'remoting-me2me-host-mac.zip', | 60 'filename': 'remoting-me2me-host-mac.zip', |
| 55 'buildtype': ['dev', 'official'], | 61 'buildtype': ['dev', 'official'], |
| 56 'archive': 'remoting-me2me-host-mac.zip', | 62 'archive': 'remoting-me2me-host-mac.zip', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 72 'buildtype': ['official'], | 78 'buildtype': ['official'], |
| 73 'archive': 'chrome-mac-nacl-irt-syms.zip', | 79 'archive': 'chrome-mac-nacl-irt-syms.zip', |
| 74 }, | 80 }, |
| 75 { | 81 { |
| 76 'filename': 'nacl_irt_x86_64.nexe.debug', | 82 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 77 'arch': ['64bit'], | 83 'arch': ['64bit'], |
| 78 'buildtype': ['official'], | 84 'buildtype': ['official'], |
| 79 'archive': 'chrome-mac-nacl-irt-syms.zip', | 85 'archive': 'chrome-mac-nacl-irt-syms.zip', |
| 80 }, | 86 }, |
| 81 ] | 87 ] |
| OLD | NEW |