| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from buildbot.changes import svnpoller | 5 from buildbot.changes import svnpoller |
| 6 from buildbot.schedulers.basic import SingleBranchScheduler | 6 from buildbot.schedulers.basic import SingleBranchScheduler |
| 7 | 7 |
| 8 # These modules come from scripts/master, which must be in the PYTHONPATH. | 8 # These modules come from scripts/master, which must be in the PYTHONPATH. |
| 9 from master import build_utils | 9 from master import build_utils |
| 10 from master import chromium_notifier | 10 from master import chromium_notifier |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 'crypto', | 231 'crypto', |
| 232 'cacheinvalidation', | 232 'cacheinvalidation', |
| 233 'jingle'], | 233 'jingle'], |
| 234 options=['--compiler=clang'], | 234 options=['--compiler=clang'], |
| 235 factory_properties={ | 235 factory_properties={ |
| 236 'gclient_env': { | 236 'gclient_env': { |
| 237 'GYP_DEFINES':'clang=1 clang_use_chrome_plugins=1 ' + | 237 'GYP_DEFINES':'clang=1 clang_use_chrome_plugins=1 ' + |
| 238 'chromeos=1 fastbuild=1 target_arch=ia32' | 238 'chromeos=1 fastbuild=1 target_arch=ia32' |
| 239 }}) | 239 }}) |
| 240 | 240 |
| 241 f_chromium_tot_chromeos_x86_generic = chromeos_factory.ChromeCbuildbotFactory( | 241 f_chromium_tot_chromeos_x86_generic = chromeos_factory.CbuildbotFactory( |
| 242 buildroot='/b/cbuild.x86', | 242 buildroot='/b/cbuild.x86', |
| 243 crostools_repo=None, | 243 crostools_repo=None, |
| 244 pass_revision=True, | 244 pass_revision=True, |
| 245 params='x86-generic-tot-chrome-pfq-informational').get_factory() | 245 params='x86-generic-tot-chrome-pfq-informational').get_factory() |
| 246 | 246 |
| 247 f_chromium_tot_chromeos_arm_generic = chromeos_factory.ChromeCbuildbotFactory( | 247 f_chromium_tot_chromeos_arm_generic = chromeos_factory.CbuildbotFactory( |
| 248 buildroot='/b/cbuild.arm', | 248 buildroot='/b/cbuild.arm', |
| 249 crostools_repo=None, | 249 crostools_repo=None, |
| 250 pass_revision=True, | 250 pass_revision=True, |
| 251 params='arm-generic-tot-chrome-pfq-informational').get_factory() | 251 params='arm-generic-tot-chrome-pfq-informational').get_factory() |
| 252 | 252 |
| 253 f_chromium_tot_chromeos_tegra2 = chromeos_factory.ChromeCbuildbotFactory( | 253 f_chromium_tot_chromeos_tegra2 = chromeos_factory.CbuildbotFactory( |
| 254 buildroot='/b/cbuild.tegra2', | 254 buildroot='/b/cbuild.tegra2', |
| 255 crostools_repo=None, | 255 crostools_repo=None, |
| 256 pass_revision=True, | 256 pass_revision=True, |
| 257 params='arm-tegra2-tot-chrome-pfq-informational').get_factory() | 257 params='arm-tegra2-tot-chrome-pfq-informational').get_factory() |
| 258 | 258 |
| 259 f_chromium_tot_chromeos_aura = chromeos_factory.ChromeCbuildbotFactory( | 259 f_chromium_tot_chromeos_aura = chromeos_factory.CbuildbotFactory( |
| 260 buildroot='/b/cbuild.aura', | 260 buildroot='/b/cbuild.aura', |
| 261 crostools_repo=None, | 261 crostools_repo=None, |
| 262 pass_revision=True, | 262 pass_revision=True, |
| 263 params='aura-tot-chrome-pfq-informational').get_factory() | 263 params='aura-tot-chrome-pfq-informational').get_factory() |
| 264 | 264 |
| 265 | 265 |
| 266 # ---------------------------------------------------------------------------- | 266 # ---------------------------------------------------------------------------- |
| 267 # BUILDER DEFINITIONS | 267 # BUILDER DEFINITIONS |
| 268 | 268 |
| 269 # The 'builders' list defines the Builders. Each one is configured with a | 269 # The 'builders' list defines the Builders. Each one is configured with a |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 enable_http_status_push=ActiveMaster.is_production_host) | 365 enable_http_status_push=ActiveMaster.is_production_host) |
| 366 | 366 |
| 367 if TREE_GATE_KEEPER: | 367 if TREE_GATE_KEEPER: |
| 368 import master_gatekeeper_cfg | 368 import master_gatekeeper_cfg |
| 369 master_gatekeeper_cfg.Update(config, ActiveMaster, AlternateMaster, c) | 369 master_gatekeeper_cfg.Update(config, ActiveMaster, AlternateMaster, c) |
| 370 | 370 |
| 371 ####### PROJECT IDENTITY | 371 ####### PROJECT IDENTITY |
| 372 | 372 |
| 373 # Buildbot master url: | 373 # Buildbot master url: |
| 374 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.chromiumos/' | 374 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.chromiumos/' |
| OLD | NEW |