| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 'name': 'dart2js-chrome-mac', | 264 'name': 'dart2js-chrome-mac', |
| 265 'category': '8chrome|all', | 265 'category': '8chrome|all', |
| 266 'platform': 'dart_client', | 266 'platform': 'dart_client', |
| 267 }, | 267 }, |
| 268 { | 268 { |
| 269 'name': 'dart2js-safari-mac', | 269 'name': 'dart2js-safari-mac', |
| 270 'category': '90safari|all', | 270 'category': '90safari|all', |
| 271 'platform': 'dart_client', | 271 'platform': 'dart_client', |
| 272 }, | 272 }, |
| 273 { | 273 { |
| 274 'name': 'dart2js-ie-win7-html', | 274 'name': 'dart2js-ie9-win7-html', |
| 275 'category': '91ie|all', | 275 'category': '91ie|all', |
| 276 'platform': 'dart_client', | 276 'platform': 'dart_client', |
| 277 'env': windows_env, | 277 'env': windows_env, |
| 278 }, | 278 }, |
| 279 { | 279 { |
| 280 'name': 'dart2js-ie-win7-all', | 280 'name': 'dart2js-ie9-win7-all', |
| 281 'category': '91ie|all', | 281 'category': '91ie|all', |
| 282 'platform': 'dart_client', | 282 'platform': 'dart_client', |
| 283 'env': windows_env, | 283 'env': windows_env, |
| 284 }, | 284 }, |
| 285 ] | 285 ] |
| 286 | 286 |
| 287 trunk_variants = [ | 287 trunk_variants = [ |
| 288 { | 288 { |
| 289 'name': 'vm-linux-trunk', | 289 'name': 'vm-linux-trunk', |
| 290 'category': 'trunk|all', | 290 'category': 'trunk|all', |
| (...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 944 c['projectName'] = ActiveMaster.project_name | 944 c['projectName'] = ActiveMaster.project_name |
| 945 c['projectURL'] = config.Master.project_url | 945 c['projectURL'] = config.Master.project_url |
| 946 | 946 |
| 947 # the 'buildbotURL' string should point to the location where the buildbot's | 947 # the 'buildbotURL' string should point to the location where the buildbot's |
| 948 # internal web server (usually the html.Waterfall page) is visible. This | 948 # internal web server (usually the html.Waterfall page) is visible. This |
| 949 # typically uses the port number set in the Waterfall 'status' entry, but | 949 # typically uses the port number set in the Waterfall 'status' entry, but |
| 950 # with an externally-visible host name which the buildbot cannot figure out | 950 # with an externally-visible host name which the buildbot cannot figure out |
| 951 # without some help. | 951 # without some help. |
| 952 | 952 |
| 953 c['buildbotURL'] = 'http://build.chromium.org/p/client.dart/' | 953 c['buildbotURL'] = 'http://build.chromium.org/p/client.dart/' |
| OLD | NEW |