| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 }, | 341 }, |
| 342 # Flash Player files: | 342 # Flash Player files: |
| 343 { | 343 { |
| 344 'filename': 'PepperFlash/pepflashplayer.dll', | 344 'filename': 'PepperFlash/pepflashplayer.dll', |
| 345 'buildtype': ['official'], | 345 'buildtype': ['official'], |
| 346 }, | 346 }, |
| 347 { | 347 { |
| 348 'filename': 'PepperFlash/manifest.json', | 348 'filename': 'PepperFlash/manifest.json', |
| 349 'buildtype': ['official'], | 349 'buildtype': ['official'], |
| 350 }, | 350 }, |
| 351 # Widevine CDM adapter files: | 351 # Widevine CDM files: |
| 352 { |
| 353 'filename': 'WidevineCdm/manifest.json', |
| 354 'buildtype': ['official'], |
| 355 }, |
| 356 { |
| 357 'filename': 'WidevineCdm/_platform_specific/win_x86/widevinecdm.dll', |
| 358 'arch': ['32bit'], |
| 359 'buildtype': ['official'], |
| 360 }, |
| 352 { | 361 { |
| 353 'filename': 'WidevineCdm/_platform_specific/win_x86/widevinecdmadapter.dll', | 362 'filename': 'WidevineCdm/_platform_specific/win_x86/widevinecdmadapter.dll', |
| 354 'arch': ['32bit'], | 363 'arch': ['32bit'], |
| 355 'buildtype': ['official'], | 364 'buildtype': ['official'], |
| 356 }, | 365 }, |
| 357 { | 366 { |
| 367 'filename': 'WidevineCdm/_platform_specific/win_x64/widevinecdm.dll', |
| 368 'arch': ['64bit'], |
| 369 'buildtype': ['official'], |
| 370 }, |
| 371 { |
| 358 'filename': 'WidevineCdm/_platform_specific/win_x64/widevinecdmadapter.dll', | 372 'filename': 'WidevineCdm/_platform_specific/win_x64/widevinecdmadapter.dll', |
| 359 'arch': ['64bit'], | 373 'arch': ['64bit'], |
| 360 'buildtype': ['official'], | 374 'buildtype': ['official'], |
| 361 }, | 375 }, |
| 362 # ANGLE files: | 376 # ANGLE files: |
| 363 { | 377 { |
| 364 'filename': 'D3DCompiler_47.dll', | 378 'filename': 'D3DCompiler_47.dll', |
| 365 'buildtype': ['dev', 'official'], | 379 'buildtype': ['dev', 'official'], |
| 366 }, | 380 }, |
| 367 { | 381 { |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 'arch': ['32bit'], | 670 'arch': ['32bit'], |
| 657 'buildtype': ['official'], | 671 'buildtype': ['official'], |
| 658 'archive': 'chrome-win32-nacl-irt-syms.zip', | 672 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 659 }, | 673 }, |
| 660 { | 674 { |
| 661 'filename': 'nacl_irt_x86_64.nexe.debug', | 675 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 662 'buildtype': ['official'], | 676 'buildtype': ['official'], |
| 663 'archive': 'chrome-win32-nacl-irt-syms.zip', | 677 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 664 }, | 678 }, |
| 665 ] | 679 ] |
| OLD | NEW |