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