| 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 import locks | 5 from buildbot import locks |
| 6 from buildbot.changes import svnpoller | 6 from buildbot.changes import svnpoller |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 '--', '-project', '../build/all.xcodeproj'], | 671 '--', '-project', '../build/all.xcodeproj'], |
| 672 factory_properties={ | 672 factory_properties={ |
| 673 'gclient_env': { | 673 'gclient_env': { |
| 674 'GYP_DEFINES':'clang=1 clang_use_chrome_plugins=1 fastbuild=1', | 674 'GYP_DEFINES':'clang=1 clang_use_chrome_plugins=1 fastbuild=1', |
| 675 }, | 675 }, |
| 676 }, | 676 }, |
| 677 tests=[]) | 677 tests=[]) |
| 678 | 678 |
| 679 f_chromium_mac_make = mac().ChromiumFactory( | 679 f_chromium_mac_make = mac().ChromiumFactory( |
| 680 target='Debug', | 680 target='Debug', |
| 681 options=['--build-tool=make'], | 681 options=['--build-tool=make', '--compiler=goma-clang'], |
| 682 factory_properties={ | 682 factory_properties={ |
| 683 'gclient_env': { 'GYP_GENERATORS':'make',} | 683 'gclient_env': { 'GYP_GENERATORS':'make',} |
| 684 }, | 684 }, |
| 685 tests=['base', 'gfx', 'unit', 'crypto']) | 685 tests=['base', 'gfx', 'unit', 'crypto']) |
| 686 | 686 |
| 687 f_chromium_mac_skia = mac().ChromiumFactory( | 687 f_chromium_mac_skia = mac().ChromiumFactory( |
| 688 target='Debug', | 688 target='Debug', |
| 689 factory_properties={ | 689 factory_properties={ |
| 690 'gclient_env': { 'GYP_DEFINES':'use_skia=1'}, | 690 'gclient_env': { 'GYP_DEFINES':'use_skia=1'}, |
| 691 }, | 691 }, |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 '%(builder)s, revision %(revision)s', | 1096 '%(builder)s, revision %(revision)s', |
| 1097 extraRecipients=['jochen@chromium.org'], | 1097 extraRecipients=['jochen@chromium.org'], |
| 1098 lookup=master_utils.FilterDomain(), | 1098 lookup=master_utils.FilterDomain(), |
| 1099 forgiving_steps=forgiving_steps, | 1099 forgiving_steps=forgiving_steps, |
| 1100 use_getname=True)) | 1100 use_getname=True)) |
| 1101 | 1101 |
| 1102 ####### PROJECT IDENTITY | 1102 ####### PROJECT IDENTITY |
| 1103 | 1103 |
| 1104 # Buildbot master url: | 1104 # Buildbot master url: |
| 1105 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 1105 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
| OLD | NEW |