| 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 'buildtype': ['dev', 'official'], | 374 'buildtype': ['dev', 'official'], |
| 375 'filegroup': ['default', 'symsrc'], | 375 'filegroup': ['default', 'symsrc'], |
| 376 }, | 376 }, |
| 377 # XInput files: | 377 # XInput files: |
| 378 { | 378 { |
| 379 'filename': 'xinput1_3.dll', | 379 'filename': 'xinput1_3.dll', |
| 380 'buildtype': ['dev', 'official'], | 380 'buildtype': ['dev', 'official'], |
| 381 }, | 381 }, |
| 382 # Native Client plugin files: | 382 # Native Client plugin files: |
| 383 { | 383 { |
| 384 'filename': 'ppGoogleNaClPluginChrome.dll', | |
| 385 'buildtype': ['dev', 'official'], | |
| 386 'filegroup': ['default', 'symsrc'], | |
| 387 }, | |
| 388 { | |
| 389 'filename': 'nacl_irt_x86_32.nexe', | 384 'filename': 'nacl_irt_x86_32.nexe', |
| 390 'arch': ['32bit'], | 385 'arch': ['32bit'], |
| 391 'buildtype': ['dev', 'official'], | 386 'buildtype': ['dev', 'official'], |
| 392 }, | 387 }, |
| 393 { | 388 { |
| 394 'filename': 'nacl_irt_x86_64.nexe', | 389 'filename': 'nacl_irt_x86_64.nexe', |
| 395 'buildtype': ['dev', 'official'], | 390 'buildtype': ['dev', 'official'], |
| 396 }, | 391 }, |
| 397 # Remoting files: | 392 # Remoting files: |
| 398 { | 393 { |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 'arch': ['32bit'], | 691 'arch': ['32bit'], |
| 697 'buildtype': ['dev', 'official'], | 692 'buildtype': ['dev', 'official'], |
| 698 'archive': 'chrome-win32-syms.zip', | 693 'archive': 'chrome-win32-syms.zip', |
| 699 }, | 694 }, |
| 700 { | 695 { |
| 701 'filename': 'pdf.dll.pdb', | 696 'filename': 'pdf.dll.pdb', |
| 702 'buildtype': ['dev', 'official'], | 697 'buildtype': ['dev', 'official'], |
| 703 'archive': 'chrome-win32-syms.zip', | 698 'archive': 'chrome-win32-syms.zip', |
| 704 }, | 699 }, |
| 705 { | 700 { |
| 706 'filename': 'ppGoogleNaClPluginChrome.dll.pdb', | |
| 707 'buildtype': ['dev', 'official'], | |
| 708 'archive': 'chrome-win32-syms.zip', | |
| 709 }, | |
| 710 { | |
| 711 'filename': 'setup.exe.pdb', | 701 'filename': 'setup.exe.pdb', |
| 712 'buildtype': ['dev', 'official'], | 702 'buildtype': ['dev', 'official'], |
| 713 'archive': 'chrome-win32-syms.zip', | 703 'archive': 'chrome-win32-syms.zip', |
| 714 }, | 704 }, |
| 715 # PDB files for Syzygy modified binaries. Only add to this section if you | 705 # PDB files for Syzygy modified binaries. Only add to this section if you |
| 716 # know what you're doing! The build configuration has to be modified to run | 706 # know what you're doing! The build configuration has to be modified to run |
| 717 # Syzygy on the target in question before adding a staging dependency here! | 707 # Syzygy on the target in question before adding a staging dependency here! |
| 718 { | 708 { |
| 719 'filename': 'syzygy/chrome.dll.pdb', | 709 'filename': 'syzygy/chrome.dll.pdb', |
| 720 'arch': ['32bit'], | 710 'arch': ['32bit'], |
| (...skipping 27 matching lines...) Expand all Loading... |
| 748 'arch': ['32bit'], | 738 'arch': ['32bit'], |
| 749 'buildtype': ['official'], | 739 'buildtype': ['official'], |
| 750 'archive': 'chrome-win32-nacl-irt-syms.zip', | 740 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 751 }, | 741 }, |
| 752 { | 742 { |
| 753 'filename': 'nacl_irt_x86_64.nexe.debug', | 743 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 754 'buildtype': ['official'], | 744 'buildtype': ['official'], |
| 755 'archive': 'chrome-win32-nacl-irt-syms.zip', | 745 'archive': 'chrome-win32-nacl-irt-syms.zip', |
| 756 }, | 746 }, |
| 757 ] | 747 ] |
| OLD | NEW |