| 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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 'buildtype': ['dev'], | 761 'buildtype': ['dev'], |
| 762 'archive': 'content-shell.zip', | 762 'archive': 'content-shell.zip', |
| 763 'optional': ['dev'], | 763 'optional': ['dev'], |
| 764 }, | 764 }, |
| 765 { | 765 { |
| 766 'filename': 'resources', | 766 'filename': 'resources', |
| 767 'buildtype': ['dev'], | 767 'buildtype': ['dev'], |
| 768 'archive': 'content-shell.zip', | 768 'archive': 'content-shell.zip', |
| 769 'optional': ['dev'], | 769 'optional': ['dev'], |
| 770 }, | 770 }, |
| 771 # Metrics metadata files: |
| 772 { |
| 773 'filename': 'actions.xml', |
| 774 'buildtype': ['dev', 'official'], |
| 775 'archive': 'metrics-metadata.zip', |
| 776 'optional': ['dev', 'official'], |
| 777 }, |
| 778 { |
| 779 'filename': 'histograms.xml', |
| 780 'buildtype': ['dev', 'official'], |
| 781 'archive': 'metrics-metadata.zip', |
| 782 'optional': ['dev', 'official'], |
| 783 }, |
| 784 { |
| 785 'filename': 'rappor.xml', |
| 786 'buildtype': ['dev', 'official'], |
| 787 'archive': 'metrics-metadata.zip', |
| 788 'optional': ['dev', 'official'], |
| 789 }, |
| 771 ] | 790 ] |
| OLD | NEW |