| 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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 'buildtype': ['dev', 'official'], | 620 'buildtype': ['dev', 'official'], |
| 621 'archive': 'mini_installer.exe', | 621 'archive': 'mini_installer.exe', |
| 622 'filegroup': ['symsrc'], | 622 'filegroup': ['symsrc'], |
| 623 }, | 623 }, |
| 624 { | 624 { |
| 625 'filename': 'chrome.packed.7z', | 625 'filename': 'chrome.packed.7z', |
| 626 'buildtype': ['official'], | 626 'buildtype': ['official'], |
| 627 'archive': 'chrome.packed.7z', | 627 'archive': 'chrome.packed.7z', |
| 628 }, | 628 }, |
| 629 { | 629 { |
| 630 'filename': 'mini_installer_exe_version.rc', | 630 'filename': 'obj/mini_installer/mini_installer_exe_version.rc', |
| 631 'buildtype': ['official'], | 631 'buildtype': ['official'], |
| 632 'archive': 'mini_installer_exe_version.rc', | 632 'archive': 'mini_installer_exe_version.rc', |
| 633 # Force direct archiving since the default is to archive with path, so |
| 634 # we're "renaming" it by putting it in the root directory. |
| 635 'direct_archive': 1, |
| 633 }, | 636 }, |
| 634 { | 637 { |
| 635 'filename': 'courgette.exe', | 638 'filename': 'courgette.exe', |
| 636 'buildtype': ['official'], | 639 'buildtype': ['official'], |
| 637 'archive': 'courgette.exe', | 640 'archive': 'courgette.exe', |
| 638 }, | 641 }, |
| 639 { | 642 { |
| 640 'filename': 'courgette64.exe', | 643 'filename': 'courgette64.exe', |
| 641 'arch': ['32bit'], | 644 'arch': ['32bit'], |
| 642 'buildtype': ['official'], | 645 'buildtype': ['official'], |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 'filename': 'nacl_irt_x86_32.nexe.debug', | 740 'filename': 'nacl_irt_x86_32.nexe.debug', |
| 738 'buildtype': ['official'], | 741 'buildtype': ['official'], |
| 739 'archive': 'chrome-win32-nacl-irt-syms.zip', | 742 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 740 }, | 743 }, |
| 741 { | 744 { |
| 742 'filename': 'nacl_irt_x86_64.nexe.debug', | 745 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 743 'buildtype': ['official'], | 746 'buildtype': ['official'], |
| 744 'archive': 'chrome-win32-nacl-irt-syms.zip', | 747 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 745 }, | 748 }, |
| 746 ] | 749 ] |
| OLD | NEW |