Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2011 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, | |
|
Sigurður Ásgeirsson
2011/12/07 14:30:37
Nice!
| |
| 17 # filename is added to the default archive (e.g. platform.zip). If | |
| 18 # archive == filename, filename is archived directly, not zipped. | |
| 16 | 19 |
| 17 FILES = [ | 20 FILES = [ |
| 18 { | 21 { |
| 19 'filename': 'avcodec-53.dll', | 22 'filename': 'avcodec-53.dll', |
| 20 'arch': ['32bit', '64bit'], | 23 'arch': ['32bit', '64bit'], |
| 21 'buildtype': ['dev', 'official'], | 24 'buildtype': ['dev', 'official'], |
| 22 }, | 25 }, |
| 23 { | 26 { |
| 24 'filename': 'avformat-53.dll', | 27 'filename': 'avformat-53.dll', |
| 25 'arch': ['32bit', '64bit'], | 28 'arch': ['32bit', '64bit'], |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 398 { | 401 { |
| 399 'filename': 'gcp_portmon64.dll', | 402 'filename': 'gcp_portmon64.dll', |
| 400 'arch': ['32bit', '64bit'], | 403 'arch': ['32bit', '64bit'], |
| 401 'buildtype': ['dev', 'official'], | 404 'buildtype': ['dev', 'official'], |
| 402 }, | 405 }, |
| 403 { | 406 { |
| 404 'filename': 'virtual_driver_setup.exe', | 407 'filename': 'virtual_driver_setup.exe', |
| 405 'arch': ['32bit', '64bit'], | 408 'arch': ['32bit', '64bit'], |
| 406 'buildtype': ['dev', 'official'], | 409 'buildtype': ['dev', 'official'], |
| 407 }, | 410 }, |
| 411 # syzygy files: | |
| 412 { | |
| 413 'filename': 'syzygy/chrome.dll', | |
| 414 'arch': ['32bit', '64bit'], | |
| 415 'buildtype': ['official'], | |
| 416 'archive': 'syzygy/chrome.dll', | |
| 417 }, | |
| 418 { | |
| 419 'filename': 'syzygy/mini_installer.exe', | |
| 420 'arch': ['32bit', '64bit'], | |
| 421 'buildtype': ['official'], | |
| 422 'archive': 'syzygy/mini_installer.exe', | |
| 423 }, | |
| 424 { | |
| 425 'filename': 'syzygy/chrome.packed.7z', | |
| 426 'arch': ['32bit', '64bit'], | |
| 427 'buildtype': ['official'], | |
| 428 'archive': 'syzygy/chrome.packed.7z', | |
| 429 }, | |
| 408 ] | 430 ] |
| OLD | NEW |