| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 { | 375 { |
| 376 'filename': 'libEGL.dll', | 376 'filename': 'libEGL.dll', |
| 377 'buildtype': ['dev', 'official'], | 377 'buildtype': ['dev', 'official'], |
| 378 'filegroup': ['default', 'symsrc'], | 378 'filegroup': ['default', 'symsrc'], |
| 379 }, | 379 }, |
| 380 { | 380 { |
| 381 'filename': 'libGLESv2.dll', | 381 'filename': 'libGLESv2.dll', |
| 382 'buildtype': ['dev', 'official'], | 382 'buildtype': ['dev', 'official'], |
| 383 'filegroup': ['default', 'symsrc'], | 383 'filegroup': ['default', 'symsrc'], |
| 384 }, | 384 }, |
| 385 # SwiftShader files: |
| 386 { |
| 387 'filename': 'swiftshader/libEGL.dll', |
| 388 'buildtype': ['dev', 'official'], |
| 389 'filegroup': ['default', 'symsrc'], |
| 390 }, |
| 391 { |
| 392 'filename': 'swiftshader/libGLESv2.dll', |
| 393 'buildtype': ['dev', 'official'], |
| 394 'filegroup': ['default', 'symsrc'], |
| 395 }, |
| 385 # Native Client plugin files: | 396 # Native Client plugin files: |
| 386 { | 397 { |
| 387 'filename': 'nacl_irt_x86_32.nexe', | 398 'filename': 'nacl_irt_x86_32.nexe', |
| 388 'arch': ['32bit'], | 399 'arch': ['32bit'], |
| 389 'buildtype': ['dev', 'official'], | 400 'buildtype': ['dev', 'official'], |
| 390 }, | 401 }, |
| 391 { | 402 { |
| 392 'filename': 'nacl_irt_x86_64.nexe', | 403 'filename': 'nacl_irt_x86_64.nexe', |
| 393 'buildtype': ['dev', 'official'], | 404 'buildtype': ['dev', 'official'], |
| 394 }, | 405 }, |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 'filename': 'libEGL.dll.pdb', | 611 'filename': 'libEGL.dll.pdb', |
| 601 'buildtype': ['dev', 'official'], | 612 'buildtype': ['dev', 'official'], |
| 602 'archive': 'chrome-win32-syms.zip', | 613 'archive': 'chrome-win32-syms.zip', |
| 603 }, | 614 }, |
| 604 { | 615 { |
| 605 'filename': 'libGLESv2.dll.pdb', | 616 'filename': 'libGLESv2.dll.pdb', |
| 606 'buildtype': ['dev', 'official'], | 617 'buildtype': ['dev', 'official'], |
| 607 'archive': 'chrome-win32-syms.zip', | 618 'archive': 'chrome-win32-syms.zip', |
| 608 }, | 619 }, |
| 609 { | 620 { |
| 621 'filename': 'swiftshader/libEGL.dll.pdb', |
| 622 'buildtype': ['dev', 'official'], |
| 623 'archive': 'chrome-win32-syms.zip', |
| 624 }, |
| 625 { |
| 626 'filename': 'swiftshader/libGLESv2.dll.pdb', |
| 627 'buildtype': ['dev', 'official'], |
| 628 'archive': 'chrome-win32-syms.zip', |
| 629 }, |
| 630 { |
| 610 'filename': 'mini_installer.exe.pdb', | 631 'filename': 'mini_installer.exe.pdb', |
| 611 'buildtype': ['dev', 'official'], | 632 'buildtype': ['dev', 'official'], |
| 612 'archive': 'chrome-win32-syms.zip', | 633 'archive': 'chrome-win32-syms.zip', |
| 613 }, | 634 }, |
| 614 { | 635 { |
| 615 'filename': 'nacl64.exe.pdb', | 636 'filename': 'nacl64.exe.pdb', |
| 616 'arch': ['32bit'], | 637 'arch': ['32bit'], |
| 617 'buildtype': ['dev', 'official'], | 638 'buildtype': ['dev', 'official'], |
| 618 'archive': 'chrome-win32-syms.zip', | 639 'archive': 'chrome-win32-syms.zip', |
| 619 }, | 640 }, |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 741 'archive': 'content-shell.zip', | 762 'archive': 'content-shell.zip', |
| 742 'optional': ['dev'], | 763 'optional': ['dev'], |
| 743 }, | 764 }, |
| 744 { | 765 { |
| 745 'filename': 'resources', | 766 'filename': 'resources', |
| 746 'buildtype': ['dev'], | 767 'buildtype': ['dev'], |
| 747 'archive': 'content-shell.zip', | 768 'archive': 'content-shell.zip', |
| 748 'optional': ['dev'], | 769 'optional': ['dev'], |
| 749 }, | 770 }, |
| 750 ] | 771 ] |
| OLD | NEW |