| 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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 { | 616 { |
| 617 'filename': 'gcapi_dll.dll.lib', | 617 'filename': 'gcapi_dll.dll.lib', |
| 618 'buildtype': ['dev', 'official'], | 618 'buildtype': ['dev', 'official'], |
| 619 'archive': 'gcapi.zip', | 619 'archive': 'gcapi.zip', |
| 620 }, | 620 }, |
| 621 { | 621 { |
| 622 'filename': 'gcapi_dll.dll.pdb', | 622 'filename': 'gcapi_dll.dll.pdb', |
| 623 'buildtype': ['dev', 'official'], | 623 'buildtype': ['dev', 'official'], |
| 624 'archive': 'chrome-win32-syms.zip', | 624 'archive': 'chrome-win32-syms.zip', |
| 625 }, | 625 }, |
| 626 # XP/Vista Probe. |
| 627 { |
| 628 'filename': 'disable_outdated_build_detector.exe', |
| 629 'arch': ['32bit'], |
| 630 'buildtype': ['official'], |
| 631 'archive': 'disable_outdated_build_detector.exe', |
| 632 'direct_archive': 1, |
| 633 'filegroup': ['default', 'symsrc'], |
| 634 'optional': ['official'], |
| 635 }, |
| 636 { |
| 637 'filename': 'disable_outdated_build_detector.exe.pdb', |
| 638 'arch': ['32bit'], |
| 639 'buildtype': ['official'], |
| 640 'archive': 'disable_outdated_build_detector.exe.pdb', |
| 641 'direct_archive': 1, |
| 642 'filegroup': ['symsrc'], |
| 643 'optional': ['official'], |
| 644 }, |
| 626 # PDB files for Syzygy modified binaries. Only add to this section if you | 645 # PDB files for Syzygy modified binaries. Only add to this section if you |
| 627 # know what you're doing! The build configuration has to be modified to run | 646 # know what you're doing! The build configuration has to be modified to run |
| 628 # Syzygy on the target in question before adding a staging dependency here! | 647 # Syzygy on the target in question before adding a staging dependency here! |
| 629 { | 648 { |
| 630 'filename': 'syzygy/chrome.dll.pdb', | 649 'filename': 'syzygy/chrome.dll.pdb', |
| 631 'arch': ['32bit'], | 650 'arch': ['32bit'], |
| 632 'buildtype': ['dev', 'official'], | 651 'buildtype': ['dev', 'official'], |
| 633 'archive': 'chrome-win32-syms.zip', | 652 'archive': 'chrome-win32-syms.zip', |
| 634 'optional': ['dev'], | 653 'optional': ['dev'], |
| 635 }, | 654 }, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 666 'arch': ['32bit'], | 685 'arch': ['32bit'], |
| 667 'buildtype': ['official'], | 686 'buildtype': ['official'], |
| 668 'archive': 'chrome-win32-nacl-irt-syms.zip', | 687 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 669 }, | 688 }, |
| 670 { | 689 { |
| 671 'filename': 'nacl_irt_x86_64.nexe.debug', | 690 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 672 'buildtype': ['official'], | 691 'buildtype': ['official'], |
| 673 'archive': 'chrome-win32-nacl-irt-syms.zip', | 692 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 674 }, | 693 }, |
| 675 ] | 694 ] |
| OLD | NEW |