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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 { | 602 { |
603 'filename': 'gcapi_dll.dll.lib', | 603 'filename': 'gcapi_dll.dll.lib', |
604 'buildtype': ['dev', 'official'], | 604 'buildtype': ['dev', 'official'], |
605 'archive': 'gcapi.zip', | 605 'archive': 'gcapi.zip', |
606 }, | 606 }, |
607 { | 607 { |
608 'filename': 'gcapi_dll.dll.pdb', | 608 'filename': 'gcapi_dll.dll.pdb', |
609 'buildtype': ['dev', 'official'], | 609 'buildtype': ['dev', 'official'], |
610 'archive': 'chrome-win32-syms.zip', | 610 'archive': 'chrome-win32-syms.zip', |
611 }, | 611 }, |
612 # XP/Vista Probe. | |
613 { | |
614 'filename': 'disable_outdated_build_detector.exe', | |
615 'arch': ['32bit'], | |
616 'buildtype': ['official'], | |
617 'archive': 'disable_outdated_build_detector.exe', | |
618 'direct_archive': 1, | |
619 'filegroup': ['default', 'symsrc'], | |
620 'optional': ['official'], | |
621 }, | |
622 { | |
623 'filename': 'disable_outdated_build_detector.exe.pdb', | |
624 'arch': ['32bit'], | |
625 'buildtype': ['official'], | |
626 'archive': 'disable_outdated_build_detector.exe.pdb', | |
627 'direct_archive': 1, | |
628 'optional': ['official'], | |
629 }, | |
630 # PDB files for Syzygy modified binaries. Only add to this section if you | 612 # PDB files for Syzygy modified binaries. Only add to this section if you |
631 # know what you're doing! The build configuration has to be modified to run | 613 # know what you're doing! The build configuration has to be modified to run |
632 # Syzygy on the target in question before adding a staging dependency here! | 614 # Syzygy on the target in question before adding a staging dependency here! |
633 { | 615 { |
634 'filename': 'syzygy/chrome.dll.pdb', | 616 'filename': 'syzygy/chrome.dll.pdb', |
635 'arch': ['32bit'], | 617 'arch': ['32bit'], |
636 'buildtype': ['dev', 'official'], | 618 'buildtype': ['dev', 'official'], |
637 'archive': 'chrome-win32-syms.zip', | 619 'archive': 'chrome-win32-syms.zip', |
638 'optional': ['dev'], | 620 'optional': ['dev'], |
639 }, | 621 }, |
(...skipping 30 matching lines...) Expand all Loading... |
670 'arch': ['32bit'], | 652 'arch': ['32bit'], |
671 'buildtype': ['official'], | 653 'buildtype': ['official'], |
672 'archive': 'chrome-win32-nacl-irt-syms.zip', | 654 'archive': 'chrome-win32-nacl-irt-syms.zip', |
673 }, | 655 }, |
674 { | 656 { |
675 'filename': 'nacl_irt_x86_64.nexe.debug', | 657 'filename': 'nacl_irt_x86_64.nexe.debug', |
676 'buildtype': ['official'], | 658 'buildtype': ['official'], |
677 'archive': 'chrome-win32-nacl-irt-syms.zip', | 659 'archive': 'chrome-win32-nacl-irt-syms.zip', |
678 }, | 660 }, |
679 ] | 661 ] |
OLD | NEW |