Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1239)

Side by Side Diff: masters/master.chromium.webkit/master_linux_webkit_pinned_cfg.py

Issue 1300623002: Remove redundant bots from chromium.webkit (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from master import master_config
6 from master.factory import chromium_factory
7
8 import master_site_config
9
10 ActiveMaster = master_site_config.ChromiumWebkit
11
12 defaults = {}
13
14 helper = master_config.Helper(defaults)
15 B = helper.Builder
16 F = helper.Factory
17
18 def linux():
19 return chromium_factory.ChromiumFactory('src/out', 'linux2')
20
21 defaults['category'] = 'deps'
22
23 ################################################################################
24 ## Release
25 ################################################################################
26
27 #
28 # Linux Rel Builder
29 #
30 B('WebKit Linux (deps)', 'f_webkit_linux_rel',
31 scheduler='global_deps_scheduler')
32 F('f_webkit_linux_rel', linux().ChromiumFactory(
33 tests=chromium_factory.blink_tests,
34 options=[
35 '--build-tool=ninja',
36 '--compiler=goma',
37 '--',
38 'blink_tests',
39 ],
40 factory_properties={
41 'additional_expectations': [
42 ['content', 'test', 'test_expectations.txt'],
43 ],
44 'archive_webkit_results': ActiveMaster.is_production_host,
45 'gclient_env': {
46 'GYP_GENERATORS':'ninja',
47 },
48 'generate_gtest_json': True,
49 'test_results_server': 'test-results.appspot.com',
50 }))
51
52 def Update(_config, _active_master, c):
53 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698