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 # |
11 # filename: Name of the file in the build output directory. | 11 # filename: Name of the file in the build output directory. |
12 # arch: List of CPU architectures for which this file should be processed | 12 # arch: List of CPU architectures for which this file should be processed |
13 # (values are based on the strings returned by python's | 13 # (values are based on the strings returned by python's |
14 # platform.architecture() function). | 14 # platform.architecture() function). |
15 # buildtype: List of build types for which this file should be processed. | 15 # buildtype: List of build types for which this file should be processed. |
16 # archive: The name of the archive file to store filename in. If not specified, | 16 # archive: The name of the archive file to store filename in. If not specified, |
17 # filename is added to the default archive (e.g. platform.zip). If | 17 # filename is added to the default archive (e.g. platform.zip). If |
18 # archive == filename, filename is archived directly, not zipped. | 18 # archive == filename, filename is archived directly, not zipped. |
19 # direct_archive: Force a file to be archived as-is, bypassing zip creation. | 19 # direct_archive: Force a file to be archived as-is, bypassing zip creation. |
20 # NOTE: This flag will not apply if more than one file has the | 20 # NOTE: This flag will not apply if more than one file has the |
21 # same 'archive' name, which will create a zip of all the | 21 # same 'archive' name, which will create a zip of all the |
22 # files instead. | 22 # files instead. |
23 # optional: List of buildtypes for which the file might not exist, and it's not | 23 # optional: List of buildtypes for which the file might not exist, and it's not |
24 # considered an error. | 24 # considered an error. |
25 | 25 |
26 FILES = [ | 26 FILES = [ |
27 { | 27 { |
28 'filename': 'avcodec-53.dll', | 28 'filename': 'avcodec-54.dll', |
29 'arch': ['32bit', '64bit'], | 29 'arch': ['32bit', '64bit'], |
30 'buildtype': ['dev', 'official'], | 30 'buildtype': ['dev', 'official'], |
31 }, | 31 }, |
32 { | 32 { |
33 'filename': 'avformat-53.dll', | 33 'filename': 'avformat-54.dll', |
34 'arch': ['32bit', '64bit'], | 34 'arch': ['32bit', '64bit'], |
35 'buildtype': ['dev', 'official'], | 35 'buildtype': ['dev', 'official'], |
36 }, | 36 }, |
37 { | 37 { |
38 'filename': 'avutil-51.dll', | 38 'filename': 'avutil-51.dll', |
39 'arch': ['32bit', '64bit'], | 39 'arch': ['32bit', '64bit'], |
40 'buildtype': ['dev', 'official'], | 40 'buildtype': ['dev', 'official'], |
41 }, | 41 }, |
42 { | 42 { |
43 'filename': 'chrome.exe', | 43 'filename': 'chrome.exe', |
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 'buildtype': ['official'], | 513 'buildtype': ['official'], |
514 'archive': 'courgette.exe', | 514 'archive': 'courgette.exe', |
515 }, | 515 }, |
516 { | 516 { |
517 'filename': 'courgette64.exe', | 517 'filename': 'courgette64.exe', |
518 'arch': ['32bit', '64bit'], | 518 'arch': ['32bit', '64bit'], |
519 'buildtype': ['official'], | 519 'buildtype': ['official'], |
520 'archive': 'courgette64.exe', | 520 'archive': 'courgette64.exe', |
521 }, | 521 }, |
522 ] | 522 ] |
OLD | NEW |