| 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 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 { | 699 { |
| 700 'filename': 'setup.exe.pdb', | 700 'filename': 'setup.exe.pdb', |
| 701 'buildtype': ['dev', 'official'], | 701 'buildtype': ['dev', 'official'], |
| 702 'archive': 'chrome-win32-syms.zip', | 702 'archive': 'chrome-win32-syms.zip', |
| 703 }, | 703 }, |
| 704 # Partner API files. | 704 # Partner API files. |
| 705 { | 705 { |
| 706 'filename': 'gcapi_dll.dll', | 706 'filename': 'gcapi_dll.dll', |
| 707 'buildtype': ['dev', 'official'], | 707 'buildtype': ['dev', 'official'], |
| 708 }, | 708 }, |
| 709 # Chrome App Installer files (official build only): | |
| 710 { | |
| 711 'filename': 'app_installer.exe', | |
| 712 'buildtype': ['official'], | |
| 713 'archive': 'app_installer.zip', | |
| 714 }, | |
| 715 { | |
| 716 'filename': 'app_installer.exe.pdb', | |
| 717 'buildtype': ['official'], | |
| 718 'archive': 'app_installer.zip', | |
| 719 }, | |
| 720 # PDB files for Syzygy modified binaries. Only add to this section if you | 709 # PDB files for Syzygy modified binaries. Only add to this section if you |
| 721 # know what you're doing! The build configuration has to be modified to run | 710 # know what you're doing! The build configuration has to be modified to run |
| 722 # Syzygy on the target in question before adding a staging dependency here! | 711 # Syzygy on the target in question before adding a staging dependency here! |
| 723 { | 712 { |
| 724 'filename': 'syzygy/chrome.dll.pdb', | 713 'filename': 'syzygy/chrome.dll.pdb', |
| 725 'arch': ['32bit'], | 714 'arch': ['32bit'], |
| 726 'buildtype': ['dev', 'official'], | 715 'buildtype': ['dev', 'official'], |
| 727 'archive': 'chrome-win32-syms.zip', | 716 'archive': 'chrome-win32-syms.zip', |
| 728 'optional': ['dev'], | 717 'optional': ['dev'], |
| 729 }, | 718 }, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 760 'arch': ['32bit'], | 749 'arch': ['32bit'], |
| 761 'buildtype': ['official'], | 750 'buildtype': ['official'], |
| 762 'archive': 'chrome-win32-nacl-irt-syms.zip', | 751 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 763 }, | 752 }, |
| 764 { | 753 { |
| 765 'filename': 'nacl_irt_x86_64.nexe.debug', | 754 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 766 'buildtype': ['official'], | 755 'buildtype': ['official'], |
| 767 'archive': 'chrome-win32-nacl-irt-syms.zip', | 756 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 768 }, | 757 }, |
| 769 ] | 758 ] |
| OLD | NEW |