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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
408 'arch': ['32bit', '64bit'], | 408 'arch': ['32bit', '64bit'], |
409 'buildtype': ['dev', 'official'], | 409 'buildtype': ['dev', 'official'], |
410 }, | 410 }, |
411 { | 411 { |
412 'filename': 'nacl_irt_x86_64.nexe', | 412 'filename': 'nacl_irt_x86_64.nexe', |
413 'arch': ['32bit', '64bit'], | 413 'arch': ['32bit', '64bit'], |
414 'buildtype': ['dev', 'official'], | 414 'buildtype': ['dev', 'official'], |
415 }, | 415 }, |
416 # Remoting files: | 416 # Remoting files: |
417 { | 417 { |
418 'filename': 'chromoting.msi', | |
Sergey Ulanov
2012/04/04 22:45:13
maybe call it remoting-host.msi - for consistency
alexeypa (please no reviews)
2012/04/04 23:29:31
Currently we use "ChromeRemoteDesktop.msi" for dow
alexeypa (please no reviews)
2012/04/05 00:09:15
Done.
| |
419 'arch': ['32bit', '64bit'], | |
420 'buildtype': ['dev', 'official'], | |
421 'archive': 'chromoting.msi', | |
422 }, | |
423 { | |
418 'filename': 'remoting-webapp.zip', | 424 'filename': 'remoting-webapp.zip', |
419 'arch': ['32bit', '64bit'], | 425 'arch': ['32bit', '64bit'], |
420 'buildtype': ['dev', 'official'], | 426 'buildtype': ['dev', 'official'], |
421 'archive': 'remoting-webapp.zip', | 427 'archive': 'remoting-webapp.zip', |
422 }, | 428 }, |
423 # Cloud Print virtual driver files: | 429 # Cloud Print virtual driver files: |
424 { | 430 { |
425 'filename': 'gcp_portmon.dll', | 431 'filename': 'gcp_portmon.dll', |
426 'arch': ['32bit', '64bit'], | 432 'arch': ['32bit', '64bit'], |
427 'buildtype': ['dev', 'official'], | 433 'buildtype': ['dev', 'official'], |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
518 'buildtype': ['official'], | 524 'buildtype': ['official'], |
519 'archive': 'courgette.exe', | 525 'archive': 'courgette.exe', |
520 }, | 526 }, |
521 { | 527 { |
522 'filename': 'courgette64.exe', | 528 'filename': 'courgette64.exe', |
523 'arch': ['32bit', '64bit'], | 529 'arch': ['32bit', '64bit'], |
524 'buildtype': ['official'], | 530 'buildtype': ['official'], |
525 'archive': 'courgette64.exe', | 531 'archive': 'courgette64.exe', |
526 }, | 532 }, |
527 ] | 533 ] |
OLD | NEW |