Chromium Code Reviews| 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 13 matching lines...) Expand all Loading... | |
| 24 # default: Legacy "default archive". TODO(mmoss): These should | 24 # default: Legacy "default archive". TODO(mmoss): These should |
| 25 # be updated to specify an 'archive' name and then this | 25 # be updated to specify an 'archive' name and then this |
| 26 # filegroup and the related archive_utils.ParseLegacyList() | 26 # filegroup and the related archive_utils.ParseLegacyList() |
| 27 # should go away. | 27 # should go away. |
| 28 # symsrc: Files to upload to the symbol server. | 28 # symsrc: Files to upload to the symbol server. |
| 29 # optional: List of buildtypes for which the file might not exist, and it's not | 29 # optional: List of buildtypes for which the file might not exist, and it's not |
| 30 # considered an error. | 30 # considered an error. |
| 31 | 31 |
| 32 FILES = [ | 32 FILES = [ |
| 33 { | 33 { |
| 34 'filename': 'browser_tests.exe', | |
| 35 'buildtype': ['dev', 'official'], | |
|
anandc
2014/06/04 16:17:33
Does buildtype='dev' mean Chromium? If so, then we
Michael Moss
2014/06/04 16:44:19
Yes, basically the chromium builders vs. the relea
| |
| 36 'filegroup': ['default', 'symsrc'], | |
| 37 'archive': 'browser_tests.exe', | |
| 38 }, | |
| 39 { | |
| 34 'filename': 'ffmpegsumo.dll', | 40 'filename': 'ffmpegsumo.dll', |
| 35 'buildtype': ['dev', 'official'], | 41 'buildtype': ['dev', 'official'], |
| 36 'filegroup': ['default', 'symsrc'], | 42 'filegroup': ['default', 'symsrc'], |
| 37 }, | 43 }, |
| 38 { | 44 { |
| 39 'filename': 'chrome.exe', | 45 'filename': 'chrome.exe', |
| 40 'buildtype': ['dev', 'official'], | 46 'buildtype': ['dev', 'official'], |
| 41 'filegroup': ['default', 'symsrc'], | 47 'filegroup': ['default', 'symsrc'], |
| 42 }, | 48 }, |
| 43 { | 49 { |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 747 'arch': ['32bit'], | 753 'arch': ['32bit'], |
| 748 'buildtype': ['official'], | 754 'buildtype': ['official'], |
| 749 'archive': 'chrome-win32-nacl-irt-syms.zip', | 755 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 750 }, | 756 }, |
| 751 { | 757 { |
| 752 'filename': 'nacl_irt_x86_64.nexe.debug', | 758 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 753 'buildtype': ['official'], | 759 'buildtype': ['official'], |
| 754 'archive': 'chrome-win32-nacl-irt-syms.zip', | 760 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 755 }, | 761 }, |
| 756 ] | 762 ] |
| OLD | NEW |