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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 'filename': 'nacl_irt_x86_32.nexe.debug', | 651 'filename': 'nacl_irt_x86_32.nexe.debug', |
652 'arch': ['32bit'], | 652 'arch': ['32bit'], |
653 'buildtype': ['official'], | 653 'buildtype': ['official'], |
654 'archive': 'chrome-win32-nacl-irt-syms.zip', | 654 'archive': 'chrome-win32-nacl-irt-syms.zip', |
655 }, | 655 }, |
656 { | 656 { |
657 'filename': 'nacl_irt_x86_64.nexe.debug', | 657 'filename': 'nacl_irt_x86_64.nexe.debug', |
658 'buildtype': ['official'], | 658 'buildtype': ['official'], |
659 'archive': 'chrome-win32-nacl-irt-syms.zip', | 659 'archive': 'chrome-win32-nacl-irt-syms.zip', |
660 }, | 660 }, |
| 661 # Content shell files: |
| 662 { |
| 663 'filename': 'AHEM____.TTF', |
| 664 'buildtype': ['dev'], |
| 665 'archive': 'content-shell.zip', |
| 666 'optional': ['dev'], |
| 667 }, |
| 668 { |
| 669 'filename': 'blink_deprecated_test_plugin.dll', |
| 670 'buildtype': ['dev'], |
| 671 'archive': 'content-shell.zip', |
| 672 'optional': ['dev'], |
| 673 }, |
| 674 { |
| 675 'filename': 'blink_test_plugin.dll', |
| 676 'buildtype': ['dev'], |
| 677 'archive': 'content-shell.zip', |
| 678 'optional': ['dev'], |
| 679 }, |
| 680 { |
| 681 'filename': 'content_shell.exe', |
| 682 'buildtype': ['dev'], |
| 683 'archive': 'content-shell.zip', |
| 684 'optional': ['dev'], |
| 685 }, |
| 686 { |
| 687 'filename': 'content_shell.pak', |
| 688 'buildtype': ['dev'], |
| 689 'archive': 'content-shell.zip', |
| 690 'optional': ['dev'], |
| 691 }, |
| 692 { |
| 693 'filename': 'content_shell_crash_service.exe', |
| 694 'buildtype': ['dev'], |
| 695 'archive': 'content-shell.zip', |
| 696 'optional': ['dev'], |
| 697 }, |
| 698 { |
| 699 'filename': 'icudtl.dat', |
| 700 'buildtype': ['dev'], |
| 701 'archive': 'content-shell.zip', |
| 702 'optional': ['dev'], |
| 703 }, |
| 704 { |
| 705 'filename': 'natives_blob.bin', |
| 706 'buildtype': ['dev'], |
| 707 'archive': 'content-shell.zip', |
| 708 'optional': ['dev'], |
| 709 }, |
| 710 { |
| 711 'filename': 'osmesa.dll', |
| 712 'buildtype': ['dev'], |
| 713 'archive': 'content-shell.zip', |
| 714 'optional': ['dev'], |
| 715 }, |
| 716 { |
| 717 'filename': 'resources', |
| 718 'buildtype': ['dev'], |
| 719 'archive': 'content-shell.zip', |
| 720 'optional': ['dev'], |
| 721 }, |
661 ] | 722 ] |
OLD | NEW |