OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 . import steps | 5 from . import steps |
6 | 6 |
7 SPEC = { | 7 SPEC = { |
8 'settings': { | 8 'settings': { |
9 'build_gs_bucket': 'chromium-fyi-archive', | 9 'build_gs_bucket': 'chromium-fyi-archive', |
10 }, | 10 }, |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 steps.BlinkTest(), | 381 steps.BlinkTest(), |
382 ], | 382 ], |
383 'test_generators': [ | 383 'test_generators': [ |
384 steps.generate_gtest, | 384 steps.generate_gtest, |
385 steps.generate_script, | 385 steps.generate_script, |
386 ], | 386 ], |
387 'testing': { | 387 'testing': { |
388 'platform': 'linux', | 388 'platform': 'linux', |
389 }, | 389 }, |
390 }, | 390 }, |
| 391 'CrWinClang': { |
| 392 'recipe_config': 'chromium_win_clang', |
| 393 'chromium_config_kwargs': { |
| 394 'BUILD_CONFIG': 'Release', |
| 395 'TARGET_BITS': 32, |
| 396 }, |
| 397 'bot_type': 'builder', |
| 398 'testing': { |
| 399 'platform': 'win', |
| 400 }, |
| 401 }, |
| 402 'CrWinClang tester': { |
| 403 'recipe_config': 'chromium_win_clang', |
| 404 'chromium_config_kwargs': { |
| 405 'BUILD_CONFIG': 'Release', |
| 406 'TARGET_BITS': 32, |
| 407 }, |
| 408 'test_generators': [ |
| 409 steps.generate_gtest, |
| 410 ], |
| 411 'bot_type': 'tester', |
| 412 'parent_buildername': 'CrWinClang', |
| 413 'testing': { |
| 414 'platform': 'win', |
| 415 }, |
| 416 }, |
391 }, | 417 }, |
392 } | 418 } |
OLD | NEW |