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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 'archive': 'pnacl.zip', | 45 'archive': 'pnacl.zip', |
46 }, | 46 }, |
47 # Browser tests: | 47 # Browser tests: |
48 { | 48 { |
49 'filename': 'browser_tests', | 49 'filename': 'browser_tests', |
50 'buildtype': ['dev', 'official'], | 50 'buildtype': ['dev', 'official'], |
51 'archive': 'browser_tests', | 51 'archive': 'browser_tests', |
52 }, | 52 }, |
53 # Remoting files: | 53 # Remoting files: |
54 { | 54 { |
55 'filename': 'remoting-webapp.zip', | |
56 'buildtype': ['dev', 'official'], | |
57 'archive': 'remoting-webapp.zip', | |
58 }, | |
59 { | |
60 'filename': 'remoting-me2me-host-mac.zip', | 55 'filename': 'remoting-me2me-host-mac.zip', |
61 'buildtype': ['dev', 'official'], | 56 'buildtype': ['dev', 'official'], |
62 'archive': 'remoting-me2me-host-mac.zip', | 57 'archive': 'remoting-me2me-host-mac.zip', |
63 }, | 58 }, |
64 # Symbols archive: | 59 # Symbols archive: |
65 { | 60 { |
66 'filename': 'Google Chrome.dSYM.tar.bz2', | 61 'filename': 'Google Chrome.dSYM.tar.bz2', |
67 'buildtype': ['official'], | 62 'buildtype': ['official'], |
68 'archive': 'Google Chrome.dSYM.tar.bz2', | 63 'archive': 'Google Chrome.dSYM.tar.bz2', |
69 }, | 64 }, |
70 { | 65 { |
71 'filename': 'nacl_irt_x86_32.nexe.debug', | 66 'filename': 'nacl_irt_x86_32.nexe.debug', |
72 'arch': ['32bit'], | 67 'arch': ['32bit'], |
73 'buildtype': ['official'], | 68 'buildtype': ['official'], |
74 'archive': 'chrome-mac-nacl-irt-syms.zip', | 69 'archive': 'chrome-mac-nacl-irt-syms.zip', |
75 }, | 70 }, |
76 { | 71 { |
77 'filename': 'nacl_irt_x86_64.nexe.debug', | 72 'filename': 'nacl_irt_x86_64.nexe.debug', |
78 'arch': ['64bit'], | 73 'arch': ['64bit'], |
79 'buildtype': ['official'], | 74 'buildtype': ['official'], |
80 'archive': 'chrome-mac-nacl-irt-syms.zip', | 75 'archive': 'chrome-mac-nacl-irt-syms.zip', |
81 }, | 76 }, |
82 ] | 77 ] |
OLD | NEW |