| 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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 'chromium_config_optimize': 'chromium_pgo_optimize', | 448 'chromium_config_optimize': 'chromium_pgo_optimize', |
| 449 'gclient_config': 'chromium_lkgr', | 449 'gclient_config': 'chromium_lkgr', |
| 450 'chromium_config_kwargs': { | 450 'chromium_config_kwargs': { |
| 451 'BUILD_CONFIG': 'Release', | 451 'BUILD_CONFIG': 'Release', |
| 452 'TARGET_BITS': 32, | 452 'TARGET_BITS': 32, |
| 453 }, | 453 }, |
| 454 'testing': { | 454 'testing': { |
| 455 'platform': 'win', | 455 'platform': 'win', |
| 456 }, | 456 }, |
| 457 }, | 457 }, |
| 458 'ChromiumPractice': { |
| 459 'recipe_config': 'chromium_blink_merged', |
| 460 'chromium_config_kwargs': { |
| 461 'BUILD_CONFIG': 'Release', |
| 462 'TARGET_BITS': 64, |
| 463 }, |
| 464 'bot_type': 'builder', |
| 465 'testing': { |
| 466 'platform': 'linux', |
| 467 }, |
| 468 }, |
| 469 'ChromiumPracticeTester': { |
| 470 'recipe_config': 'chromium_blink_merged', |
| 471 'chromium_config_kwargs': { |
| 472 'BUILD_CONFIG': 'Release', |
| 473 'TARGET_BITS': 64, |
| 474 }, |
| 475 'tests': [ |
| 476 steps.BlinkTest(), |
| 477 ], |
| 478 'bot_type': 'tester', |
| 479 'parent_buildername': 'ChromiumPractice', |
| 480 'testing': { |
| 481 'platform': 'linux', |
| 482 }, |
| 483 }, |
| 458 }, | 484 }, |
| 459 } | 485 } |
| OLD | NEW |