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

Side by Side Diff: masters/master.chromium.linux/master_linux_cfg.py

Issue 11882038: Add components_unittests to bots (Closed) Base URL: https://git.chromium.org/chromium/tools/build.git@master
Patch Set: Created 7 years, 11 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
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 master import master_config 5 from master import master_config
6 from master.factory import chromium_factory 6 from master.factory import chromium_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
(...skipping 21 matching lines...) Expand all
32 ] 32 ]
33 33
34 # These are the common targets to most of the builders 34 # These are the common targets to most of the builders
35 linux_all_test_targets = [ 35 linux_all_test_targets = [
36 'base_unittests', 36 'base_unittests',
37 'browser_tests', 37 'browser_tests',
38 'cacheinvalidation_unittests', 38 'cacheinvalidation_unittests',
39 'cc_unittests', 39 'cc_unittests',
40 'chrome', 40 'chrome',
41 'chromedriver2_unittests', 41 'chromedriver2_unittests',
42 'components_unittests',
42 'content_browsertests', 43 'content_browsertests',
43 'content_unittests', 44 'content_unittests',
44 'crypto_unittests', 45 'crypto_unittests',
45 'dbus_unittests', 46 'dbus_unittests',
46 'device_unittests', 47 'device_unittests',
47 'googleurl_unittests', 48 'googleurl_unittests',
48 'gpu_unittests', 49 'gpu_unittests',
49 'interactive_ui_tests', 50 'interactive_ui_tests',
50 'ipc_tests', 51 'ipc_tests',
51 'jingle_unittests', 52 'jingle_unittests',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 B('Linux Tests x64', 'rel_unit', 'testers', 'linux_rel_trigger', 100 B('Linux Tests x64', 'rel_unit', 'testers', 'linux_rel_trigger',
100 notify_on_missing=True) 101 notify_on_missing=True)
101 F('rel_unit', linux_tester().ChromiumFactory( 102 F('rel_unit', linux_tester().ChromiumFactory(
102 slave_type='Tester', 103 slave_type='Tester',
103 build_url=rel_archive, 104 build_url=rel_archive,
104 tests=[ 105 tests=[
105 'base', 106 'base',
106 'browser_tests', 107 'browser_tests',
107 'cacheinvalidation', 108 'cacheinvalidation',
108 'cc_unittests', 109 'cc_unittests',
110 'chromedriver2_unittests',
111 'components_unittests',
109 'content_browsertests', 112 'content_browsertests',
110 'chromedriver2_unittests',
111 'content_unittests', 113 'content_unittests',
112 'crypto', 114 'crypto',
113 'dbus', 115 'dbus',
114 'device_unittests', 116 'device_unittests',
115 'googleurl', 117 'googleurl',
116 'gpu', 118 'gpu',
117 'interactive_ui', 119 'interactive_ui',
118 'jingle', 120 'jingle',
119 'media', 121 'media',
120 'net', 122 'net',
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 notify_on_missing=True) 260 notify_on_missing=True)
259 F('dbg_unit_2', linux_tester().ChromiumFactory( 261 F('dbg_unit_2', linux_tester().ChromiumFactory(
260 slave_type='Tester', 262 slave_type='Tester',
261 build_url=dbg_archive, 263 build_url=dbg_archive,
262 target='Debug', 264 target='Debug',
263 tests=[ 265 tests=[
264 'base', 266 'base',
265 'cacheinvalidation', 267 'cacheinvalidation',
266 'cc_unittests', 268 'cc_unittests',
267 'chromedriver2_unittests', 269 'chromedriver2_unittests',
270 'components_unittests',
268 'content_unittests', 271 'content_unittests',
269 'crypto', 272 'crypto',
270 'dbus', 273 'dbus',
271 'device_unittests', 274 'device_unittests',
272 'googleurl', 275 'googleurl',
273 'gpu', 276 'gpu',
274 'interactive_ui', 277 'interactive_ui',
275 'jingle', 278 'jingle',
276 'media', 279 'media',
277 'nacl_integration', 280 'nacl_integration',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 # Linux Dbg Clang bot 329 # Linux Dbg Clang bot
327 # 330 #
328 331
329 B('Linux Clang (dbg)', 'dbg_linux_clang', 'compile', 'linux_dbg', 332 B('Linux Clang (dbg)', 'dbg_linux_clang', 'compile', 'linux_dbg',
330 notify_on_missing=True) 333 notify_on_missing=True)
331 F('dbg_linux_clang', linux().ChromiumFactory( 334 F('dbg_linux_clang', linux().ChromiumFactory(
332 target='Debug', 335 target='Debug',
333 options=['--build-tool=ninja', '--compiler=goma-clang'], 336 options=['--build-tool=ninja', '--compiler=goma-clang'],
334 tests=[ 337 tests=[
335 'base', 338 'base',
339 'components_unittests',
336 'content_unittests', 340 'content_unittests',
337 'crypto', 341 'crypto',
338 'device_unittests', 342 'device_unittests',
339 'unit_ipc', 343 'unit_ipc',
340 'unit_sql', 344 'unit_sql',
341 'unit_sync', 345 'unit_sync',
342 'unit_unit', 346 'unit_unit',
343 'ui_unittests', 347 'ui_unittests',
344 ], 348 ],
345 factory_properties={ 349 factory_properties={
346 'gclient_env': { 350 'gclient_env': {
347 'GYP_GENERATORS':'ninja', 351 'GYP_GENERATORS':'ninja',
348 'GYP_DEFINES': 352 'GYP_DEFINES':
349 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' 353 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 '
350 'test_isolation_mode=noop', 354 'test_isolation_mode=noop',
351 }})) 355 }}))
352 356
353 357
354 def Update(config, active_master, c): 358 def Update(config, active_master, c):
355 return helper.Update(c) 359 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698