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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 { | 695 { |
696 'filename': 'pdf.dll.pdb', | 696 'filename': 'pdf.dll.pdb', |
697 'buildtype': ['dev', 'official'], | 697 'buildtype': ['dev', 'official'], |
698 'archive': 'chrome-win32-syms.zip', | 698 'archive': 'chrome-win32-syms.zip', |
699 }, | 699 }, |
700 { | 700 { |
701 'filename': 'setup.exe.pdb', | 701 'filename': 'setup.exe.pdb', |
702 'buildtype': ['dev', 'official'], | 702 'buildtype': ['dev', 'official'], |
703 'archive': 'chrome-win32-syms.zip', | 703 'archive': 'chrome-win32-syms.zip', |
704 }, | 704 }, |
| 705 # Partner API files. |
| 706 { |
| 707 'filename': 'gcapi_dll.dll', |
| 708 'buildtype': ['dev', 'official'], |
| 709 }, |
705 # PDB files for Syzygy modified binaries. Only add to this section if you | 710 # PDB files for Syzygy modified binaries. Only add to this section if you |
706 # know what you're doing! The build configuration has to be modified to run | 711 # know what you're doing! The build configuration has to be modified to run |
707 # Syzygy on the target in question before adding a staging dependency here! | 712 # Syzygy on the target in question before adding a staging dependency here! |
708 { | 713 { |
709 'filename': 'syzygy/chrome.dll.pdb', | 714 'filename': 'syzygy/chrome.dll.pdb', |
710 'arch': ['32bit'], | 715 'arch': ['32bit'], |
711 'buildtype': ['dev', 'official'], | 716 'buildtype': ['dev', 'official'], |
712 'archive': 'chrome-win32-syms.zip', | 717 'archive': 'chrome-win32-syms.zip', |
713 'optional': ['dev'], | 718 'optional': ['dev'], |
714 }, | 719 }, |
(...skipping 23 matching lines...) Expand all Loading... |
738 'arch': ['32bit'], | 743 'arch': ['32bit'], |
739 'buildtype': ['official'], | 744 'buildtype': ['official'], |
740 'archive': 'chrome-win32-nacl-irt-syms.zip', | 745 'archive': 'chrome-win32-nacl-irt-syms.zip', |
741 }, | 746 }, |
742 { | 747 { |
743 'filename': 'nacl_irt_x86_64.nexe.debug', | 748 'filename': 'nacl_irt_x86_64.nexe.debug', |
744 'buildtype': ['official'], | 749 'buildtype': ['official'], |
745 'archive': 'chrome-win32-nacl-irt-syms.zip', | 750 'archive': 'chrome-win32-nacl-irt-syms.zip', |
746 }, | 751 }, |
747 ] | 752 ] |
OLD | NEW |