| 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 'filename': 'wow_helper.exe', | 325 'filename': 'wow_helper.exe', |
| 326 'arch': ['32bit'], | 326 'arch': ['32bit'], |
| 327 'buildtype': ['dev', 'official'], | 327 'buildtype': ['dev', 'official'], |
| 328 }, | 328 }, |
| 329 # PNaCl translator (archive only, component updater used for shipping). | 329 # PNaCl translator (archive only, component updater used for shipping). |
| 330 { | 330 { |
| 331 'filename': 'pnacl', | 331 'filename': 'pnacl', |
| 332 'buildtype': ['dev', 'official'], | 332 'buildtype': ['dev', 'official'], |
| 333 'archive': 'pnacl.zip', | 333 'archive': 'pnacl.zip', |
| 334 }, | 334 }, |
| 335 # Flash Player files: | |
| 336 { | |
| 337 'filename': 'PepperFlash/pepflashplayer.dll', | |
| 338 'buildtype': ['official'], | |
| 339 }, | |
| 340 { | |
| 341 'filename': 'PepperFlash/manifest.json', | |
| 342 'buildtype': ['official'], | |
| 343 }, | |
| 344 # Widevine CDM files: | 335 # Widevine CDM files: |
| 345 { | 336 { |
| 346 'filename': 'WidevineCdm/manifest.json', | 337 'filename': 'WidevineCdm/manifest.json', |
| 347 'buildtype': ['official'], | 338 'buildtype': ['official'], |
| 348 }, | 339 }, |
| 349 { | 340 { |
| 350 'filename': 'WidevineCdm/_platform_specific/win_x86/widevinecdm.dll', | 341 'filename': 'WidevineCdm/_platform_specific/win_x86/widevinecdm.dll', |
| 351 'arch': ['32bit'], | 342 'arch': ['32bit'], |
| 352 'buildtype': ['official'], | 343 'buildtype': ['official'], |
| 353 }, | 344 }, |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 'arch': ['32bit'], | 675 'arch': ['32bit'], |
| 685 'buildtype': ['official'], | 676 'buildtype': ['official'], |
| 686 'archive': 'chrome-win32-nacl-irt-syms.zip', | 677 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 687 }, | 678 }, |
| 688 { | 679 { |
| 689 'filename': 'nacl_irt_x86_64.nexe.debug', | 680 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 690 'buildtype': ['official'], | 681 'buildtype': ['official'], |
| 691 'archive': 'chrome-win32-nacl-irt-syms.zip', | 682 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 692 }, | 683 }, |
| 693 ] | 684 ] |
| OLD | NEW |