| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 'platform': 'windows', | 280 'platform': 'windows', |
| 281 'env': windows_env, | 281 'env': windows_env, |
| 282 }, | 282 }, |
| 283 { | 283 { |
| 284 'name': 'dart2js-ff-win7-2-2', | 284 'name': 'dart2js-ff-win7-2-2', |
| 285 'category': '7firefox|all', | 285 'category': '7firefox|all', |
| 286 'platform': 'windows', | 286 'platform': 'windows', |
| 287 'env': windows_env, | 287 'env': windows_env, |
| 288 }, | 288 }, |
| 289 { | 289 { |
| 290 'name': 'dart2js-chrome-linux', | 290 'name': 'dart2js-drt-linux', |
| 291 'category': '8chrome|all', | 291 'category': '8chrome|all', |
| 292 'platform': 'posix', | 292 'platform': 'posix', |
| 293 'env': linux_env, | 293 'env': linux_env, |
| 294 }, | 294 }, |
| 295 { | 295 { |
| 296 'name': 'dart2js-chrome-linux-csp', | 296 'name': 'dart2js-drt-linux-csp', |
| 297 'category': '8chrome|all', | 297 'category': '8chrome|all', |
| 298 'platform': 'posix', | 298 'platform': 'posix', |
| 299 'env': linux_env, | 299 'env': linux_env, |
| 300 }, | 300 }, |
| 301 { | 301 { |
| 302 'name': 'dart2js-chrome-mac10.7', | 302 'name': 'dart2js-chrome-mac10.7', |
| 303 'category': '8chrome|all', | 303 'category': '8chrome|all', |
| 304 'platform': 'posix', | 304 'platform': 'posix', |
| 305 }, | 305 }, |
| 306 { | 306 { |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 c['projectName'] = ActiveMaster.project_name | 789 c['projectName'] = ActiveMaster.project_name |
| 790 c['projectURL'] = config.Master.project_url | 790 c['projectURL'] = config.Master.project_url |
| 791 | 791 |
| 792 # the 'buildbotURL' string should point to the location where the buildbot's | 792 # the 'buildbotURL' string should point to the location where the buildbot's |
| 793 # internal web server (usually the html.Waterfall page) is visible. This | 793 # internal web server (usually the html.Waterfall page) is visible. This |
| 794 # typically uses the port number set in the Waterfall 'status' entry, but | 794 # typically uses the port number set in the Waterfall 'status' entry, but |
| 795 # with an externally-visible host name which the buildbot cannot figure out | 795 # with an externally-visible host name which the buildbot cannot figure out |
| 796 # without some help. | 796 # without some help. |
| 797 | 797 |
| 798 c['buildbotURL'] = 'http://build.chromium.org/p/client.dart/' | 798 c['buildbotURL'] = 'http://build.chromium.org/p/client.dart/' |
| OLD | NEW |