| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2010 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 | 16 |
| 17 FILES = [ | 17 FILES = [ |
| 18 { | 18 { |
| 19 'filename': 'avcodec-52.dll', | 19 'filename': 'avcodec-53.dll', |
| 20 'arch': ['32bit', '64bit'], | 20 'arch': ['32bit', '64bit'], |
| 21 'buildtype': ['dev', 'official'], | 21 'buildtype': ['dev', 'official'], |
| 22 }, | 22 }, |
| 23 { | 23 { |
| 24 'filename': 'avformat-52.dll', | 24 'filename': 'avformat-53.dll', |
| 25 'arch': ['32bit', '64bit'], | 25 'arch': ['32bit', '64bit'], |
| 26 'buildtype': ['dev', 'official'], | 26 'buildtype': ['dev', 'official'], |
| 27 }, | 27 }, |
| 28 { | 28 { |
| 29 'filename': 'avutil-50.dll', | 29 'filename': 'avutil-51.dll', |
| 30 'arch': ['32bit', '64bit'], | 30 'arch': ['32bit', '64bit'], |
| 31 'buildtype': ['dev', 'official'], | 31 'buildtype': ['dev', 'official'], |
| 32 }, | 32 }, |
| 33 { | 33 { |
| 34 'filename': 'chrome.exe', | 34 'filename': 'chrome.exe', |
| 35 'arch': ['32bit', '64bit'], | 35 'arch': ['32bit', '64bit'], |
| 36 'buildtype': ['dev', 'official'], | 36 'buildtype': ['dev', 'official'], |
| 37 }, | 37 }, |
| 38 { | 38 { |
| 39 'filename': 'nacl64.exe', | 39 'filename': 'nacl64.exe', |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 'filename': 'nacl_irt_x86_32.nexe', | 376 'filename': 'nacl_irt_x86_32.nexe', |
| 377 'arch': ['32bit', '64bit'], | 377 'arch': ['32bit', '64bit'], |
| 378 'buildtype': ['dev', 'official'], | 378 'buildtype': ['dev', 'official'], |
| 379 }, | 379 }, |
| 380 { | 380 { |
| 381 'filename': 'nacl_irt_x86_64.nexe', | 381 'filename': 'nacl_irt_x86_64.nexe', |
| 382 'arch': ['32bit', '64bit'], | 382 'arch': ['32bit', '64bit'], |
| 383 'buildtype': ['dev', 'official'], | 383 'buildtype': ['dev', 'official'], |
| 384 }, | 384 }, |
| 385 ] | 385 ] |
| OLD | NEW |