| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 # Contains the bulk of the libyuv builder configurations to improve readability | 5 # Contains the bulk of the libyuv builder configurations to improve readability |
| 6 # of the recipe. | 6 # of the recipe. |
| 7 | 7 |
| 8 from recipe_engine.types import freeze | 8 from recipe_engine.types import freeze |
| 9 | 9 |
| 10 RECIPE_CONFIGS = freeze({ | 10 RECIPE_CONFIGS = freeze({ |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 }, | 421 }, |
| 422 }, | 422 }, |
| 423 }, | 423 }, |
| 424 'tryserver.libyuv': { | 424 'tryserver.libyuv': { |
| 425 'settings': { | 425 'settings': { |
| 426 'build_gs_bucket': 'chromium-libyuv', | 426 'build_gs_bucket': 'chromium-libyuv', |
| 427 }, | 427 }, |
| 428 'builders': { | 428 'builders': { |
| 429 'win': { | 429 'win': { |
| 430 'recipe_config': 'libyuv', | 430 'recipe_config': 'libyuv', |
| 431 'chromium_apply_config': ['msvs2013'], |
| 431 'chromium_config_kwargs': { | 432 'chromium_config_kwargs': { |
| 432 'BUILD_CONFIG': 'Debug', | 433 'BUILD_CONFIG': 'Debug', |
| 433 'TARGET_BITS': 32, | 434 'TARGET_BITS': 32, |
| 434 }, | 435 }, |
| 435 'bot_type': 'builder_tester', | 436 'bot_type': 'builder_tester', |
| 436 'testing': {'platform': 'win'}, | 437 'testing': {'platform': 'win'}, |
| 437 }, | 438 }, |
| 438 'win_rel': { | 439 'win_rel': { |
| 439 'recipe_config': 'libyuv', | 440 'recipe_config': 'libyuv', |
| 441 'chromium_apply_config': ['msvs2013'], |
| 440 'chromium_config_kwargs': { | 442 'chromium_config_kwargs': { |
| 441 'BUILD_CONFIG': 'Release', | 443 'BUILD_CONFIG': 'Release', |
| 442 'TARGET_BITS': 32, | 444 'TARGET_BITS': 32, |
| 443 }, | 445 }, |
| 444 'bot_type': 'builder_tester', | 446 'bot_type': 'builder_tester', |
| 445 'testing': {'platform': 'win'}, | 447 'testing': {'platform': 'win'}, |
| 446 }, | 448 }, |
| 447 'win_x64_rel': { | 449 'win_x64_rel': { |
| 448 'recipe_config': 'libyuv', | 450 'recipe_config': 'libyuv', |
| 451 'chromium_apply_config': ['msvs2013'], |
| 449 'chromium_config_kwargs': { | 452 'chromium_config_kwargs': { |
| 450 'BUILD_CONFIG': 'Release', | 453 'BUILD_CONFIG': 'Release', |
| 451 'TARGET_BITS': 64, | 454 'TARGET_BITS': 64, |
| 452 }, | 455 }, |
| 453 'bot_type': 'builder_tester', | 456 'bot_type': 'builder_tester', |
| 454 'testing': {'platform': 'win'}, | 457 'testing': {'platform': 'win'}, |
| 455 }, | 458 }, |
| 456 'win_clang': { | 459 'win_clang': { |
| 457 'recipe_config': 'libyuv_clang', | 460 'recipe_config': 'libyuv_clang', |
| 458 'chromium_config_kwargs': { | 461 'chromium_config_kwargs': { |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 'TARGET_PLATFORM': 'android', | 717 'TARGET_PLATFORM': 'android', |
| 715 'TARGET_ARCH': 'mipsel', | 718 'TARGET_ARCH': 'mipsel', |
| 716 'TARGET_BITS': 32, | 719 'TARGET_BITS': 32, |
| 717 }, | 720 }, |
| 718 'bot_type': 'builder', | 721 'bot_type': 'builder', |
| 719 'testing': {'platform': 'linux'}, | 722 'testing': {'platform': 'linux'}, |
| 720 }, | 723 }, |
| 721 }, | 724 }, |
| 722 }, | 725 }, |
| 723 }) | 726 }) |
| OLD | NEW |