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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 # A single install supports both x86-32 and x86-64 versions of NaCl, | 344 # A single install supports both x86-32 and x86-64 versions of NaCl, |
345 # so the 'arch' field does not seem to make much sense in this case. | 345 # so the 'arch' field does not seem to make much sense in this case. |
346 { | 346 { |
347 'filename': 'nacl_irt_x86_32.nexe', | 347 'filename': 'nacl_irt_x86_32.nexe', |
348 'buildtype': ['dev', 'official'], | 348 'buildtype': ['dev', 'official'], |
349 }, | 349 }, |
350 { | 350 { |
351 'filename': 'nacl_irt_x86_64.nexe', | 351 'filename': 'nacl_irt_x86_64.nexe', |
352 'buildtype': ['dev', 'official'], | 352 'buildtype': ['dev', 'official'], |
353 }, | 353 }, |
354 { | |
355 'filename': 'nacl_irt_srpc_x86_32.nexe', | |
356 'buildtype': ['dev', 'official'], | |
357 }, | |
358 { | |
359 'filename': 'nacl_irt_srpc_x86_64.nexe', | |
360 'buildtype': ['dev', 'official'], | |
361 }, | |
362 # Remoting files: | 354 # Remoting files: |
363 { | 355 { |
364 'filename': 'chromoting.msi', | 356 'filename': 'chromoting.msi', |
365 'buildtype': ['dev', 'official'], | 357 'buildtype': ['dev', 'official'], |
366 'archive': 'remoting-host.msi', | 358 'archive': 'remoting-host.msi', |
367 'direct_archive': 1, | 359 'direct_archive': 1, |
368 }, | 360 }, |
369 { | 361 { |
370 'filename': 'remoting-me2me-host-win.zip', | 362 'filename': 'remoting-me2me-host-win.zip', |
371 'buildtype': ['dev', 'official'], | 363 'buildtype': ['dev', 'official'], |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 'filename': 'syzygy/chrome.dll.pdb', | 633 'filename': 'syzygy/chrome.dll.pdb', |
642 'buildtype': ['official'], | 634 'buildtype': ['official'], |
643 'archive': 'chrome-win32-syms.zip', | 635 'archive': 'chrome-win32-syms.zip', |
644 }, | 636 }, |
645 { | 637 { |
646 'filename': 'syzygy/mini_installer.exe.pdb', | 638 'filename': 'syzygy/mini_installer.exe.pdb', |
647 'buildtype': ['official'], | 639 'buildtype': ['official'], |
648 'archive': 'chrome-win32-syms.zip', | 640 'archive': 'chrome-win32-syms.zip', |
649 }, | 641 }, |
650 ] | 642 ] |
OLD | NEW |