| 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 # It has one job: define a dictionary named BuildmasterConfig. This | 8 # It has one job: define a dictionary named BuildmasterConfig. This |
| 9 # dictionary has a variety of keys to control different aspects of the | 9 # dictionary has a variety of keys to control different aspects of the |
| 10 # buildmaster. They are documented in docs/config.xhtml . | 10 # buildmaster. They are documented in docs/config.xhtml . |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 'env': windows_env, | 463 'env': windows_env, |
| 464 }, | 464 }, |
| 465 ] | 465 ] |
| 466 | 466 |
| 467 variants_editor_installer = [ | 467 variants_editor_installer = [ |
| 468 { | 468 { |
| 469 'name': 'dart-editor-installer-mac' + postfix, | 469 'name': 'dart-editor-installer-mac' + postfix, |
| 470 'category': category('4dart-editor'), | 470 'category': category('4dart-editor'), |
| 471 'platform': 'posix' + postfix, | 471 'platform': 'posix' + postfix, |
| 472 }, | 472 }, |
| 473 { |
| 474 'name': 'dart-editor-installer-win' + postfix, |
| 475 'category': category('4dart-editor'), |
| 476 'platform': 'windows-wix' + postfix, |
| 477 }, |
| 478 |
| 473 ] | 479 ] |
| 474 | 480 |
| 475 variants_arm = [ | 481 variants_arm = [ |
| 476 { | 482 { |
| 477 'name': 'target-arm-vm-linux-release' + postfix, | 483 'name': 'target-arm-vm-linux-release' + postfix, |
| 478 'category': category('1vm-arm'), | 484 'category': category('1vm-arm'), |
| 479 'platform': 'posix-standalone-noRunhooks' + postfix, | 485 'platform': 'posix-standalone-noRunhooks' + postfix, |
| 480 'mode': 'release', | 486 'mode': 'release', |
| 481 'arch': 'arm', | 487 'arch': 'arm', |
| 482 'env': linux_env, | 488 'env': linux_env, |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 c['projectName'] = ActiveMaster.project_name | 821 c['projectName'] = ActiveMaster.project_name |
| 816 c['projectURL'] = config.Master.project_url | 822 c['projectURL'] = config.Master.project_url |
| 817 | 823 |
| 818 # the 'buildbotURL' string should point to the location where the buildbot's | 824 # the 'buildbotURL' string should point to the location where the buildbot's |
| 819 # internal web server (usually the html.Waterfall page) is visible. This | 825 # internal web server (usually the html.Waterfall page) is visible. This |
| 820 # typically uses the port number set in the Waterfall 'status' entry, but | 826 # typically uses the port number set in the Waterfall 'status' entry, but |
| 821 # with an externally-visible host name which the buildbot cannot figure out | 827 # with an externally-visible host name which the buildbot cannot figure out |
| 822 # without some help. | 828 # without some help. |
| 823 | 829 |
| 824 c['buildbotURL'] = 'http://build.chromium.org/p/client.dart/' | 830 c['buildbotURL'] = 'http://build.chromium.org/p/client.dart/' |
| OLD | NEW |