OLD | NEW |
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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 'device_unittests', | 377 'device_unittests', |
378 'googleurl', | 378 'googleurl', |
379 'gpu', | 379 'gpu', |
380 'interactive_ui_tests', | 380 'interactive_ui_tests', |
381 'jingle', | 381 'jingle', |
382 'media', | 382 'media', |
383 'nacl_integration', | 383 'nacl_integration', |
384 'ppapi_unittests', | 384 'ppapi_unittests', |
385 'printing', | 385 'printing', |
386 'remoting', | 386 'remoting', |
| 387 'sandbox_linux_unittests', |
387 'unit_ipc', | 388 'unit_ipc', |
388 'unit_sql', | 389 'unit_sql', |
389 'unit_sync', | 390 'unit_sync', |
390 'unit_unit', | 391 'unit_unit', |
391 'ui_unittests', | 392 'ui_unittests', |
392 'webkit_compositor_bindings_unittests', | 393 'webkit_compositor_bindings_unittests', |
393 ], | 394 ], |
394 factory_properties={'sharded_tests': sharded_tests, | 395 factory_properties={'sharded_tests': sharded_tests, |
395 'generate_gtest_json': True})) | 396 'generate_gtest_json': True})) |
396 | 397 |
397 # | 398 # |
398 # Linux Dbg Clang bot | 399 # Linux Dbg Clang bot |
399 # | 400 # |
400 B('Linux Clang (dbg)(Precise)', | 401 B('Linux Clang (dbg)(Precise)', |
401 'dbg_precise_linux_clang', | 402 'dbg_precise_linux_clang', |
402 'compile', | 403 'compile', |
403 'linux_dbg', | 404 'linux_dbg', |
404 notify_on_missing=True) | 405 notify_on_missing=True) |
405 F('dbg_precise_linux_clang', linux().ChromiumFactory( | 406 F('dbg_precise_linux_clang', linux().ChromiumFactory( |
406 target='Debug', | 407 target='Debug', |
407 options=['--build-tool=ninja', '--compiler=goma-clang'], | 408 options=['--build-tool=ninja', '--compiler=goma-clang'], |
408 tests=[ | 409 tests=[ |
409 'base_unittests', | 410 'base_unittests', |
410 'components_unittests', | 411 'components_unittests', |
411 'content_unittests', | 412 'content_unittests', |
412 'crypto', | 413 'crypto', |
413 'device_unittests', | 414 'device_unittests', |
| 415 'sandbox_linux_unittests', |
414 'unit_ipc', | 416 'unit_ipc', |
415 'unit_sql', | 417 'unit_sql', |
416 'unit_sync', | 418 'unit_sync', |
417 'unit_unit', | 419 'unit_unit', |
418 'ui_unittests', | 420 'ui_unittests', |
419 ], | 421 ], |
420 factory_properties={ | 422 factory_properties={ |
421 'gclient_env': { | 423 'gclient_env': { |
422 'GYP_GENERATORS':'ninja', | 424 'GYP_GENERATORS':'ninja', |
423 'GYP_DEFINES': | 425 'GYP_DEFINES': |
424 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' | 426 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' |
425 'test_isolation_mode=noop', | 427 'test_isolation_mode=noop', |
426 }, | 428 }, |
427 'sharded_tests': sharded_tests, | 429 'sharded_tests': sharded_tests, |
428 })) | 430 })) |
429 | 431 |
430 | 432 |
431 def Update(config, active_master, c): | 433 def Update(config, active_master, c): |
432 return helper.Update(c) | 434 return helper.Update(c) |
OLD | NEW |