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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 'arch': ['32bit'], | 514 'arch': ['32bit'], |
515 'buildtype': ['dev', 'official'], | 515 'buildtype': ['dev', 'official'], |
516 'optional': ['dev', 'official'], | 516 'optional': ['dev', 'official'], |
517 }, | 517 }, |
518 # Test binaries for external QA: | 518 # Test binaries for external QA: |
519 { | 519 { |
520 'filename': 'interactive_ui_tests.exe', | 520 'filename': 'interactive_ui_tests.exe', |
521 'buildtype': ['dev', 'official'], | 521 'buildtype': ['dev', 'official'], |
522 'optional': ['dev', 'official'], | 522 'optional': ['dev', 'official'], |
523 }, | 523 }, |
| 524 { |
| 525 'filename': 'sync_unit_tests.exe', |
| 526 'buildtype': ['official'], |
| 527 'optional': ['official'], |
| 528 }, |
524 # Installer files (official build only): | 529 # Installer files (official build only): |
525 { | 530 { |
526 'filename': 'setup.exe', | 531 'filename': 'setup.exe', |
527 'buildtype': ['official'], | 532 'buildtype': ['official'], |
528 'archive': 'setup.exe', | 533 'archive': 'setup.exe', |
529 'filegroup': ['symsrc'], | 534 'filegroup': ['symsrc'], |
530 }, | 535 }, |
531 { | 536 { |
532 'filename': 'mini_installer.exe', | 537 'filename': 'mini_installer.exe', |
533 'buildtype': ['dev', 'official'], | 538 'buildtype': ['dev', 'official'], |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
666 'arch': ['32bit'], | 671 'arch': ['32bit'], |
667 'buildtype': ['official'], | 672 'buildtype': ['official'], |
668 'archive': 'chrome-win32-nacl-irt-syms.zip', | 673 'archive': 'chrome-win32-nacl-irt-syms.zip', |
669 }, | 674 }, |
670 { | 675 { |
671 'filename': 'nacl_irt_x86_64.nexe.debug', | 676 'filename': 'nacl_irt_x86_64.nexe.debug', |
672 'buildtype': ['official'], | 677 'buildtype': ['official'], |
673 'archive': 'chrome-win32-nacl-irt-syms.zip', | 678 'archive': 'chrome-win32-nacl-irt-syms.zip', |
674 }, | 679 }, |
675 ] | 680 ] |
OLD | NEW |