| 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 """ | 5 """ |
| 6 Recipe for building and running tests for Libyuv stand-alone. | 6 Recipe for building and running tests for Libyuv stand-alone. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 from recipe_engine.types import freeze | 9 from recipe_engine.types import freeze |
| 10 | 10 |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 'Android Clang Debug': { | 426 'Android Clang Debug': { |
| 427 'recipe_config': 'libyuv_android_clang', | 427 'recipe_config': 'libyuv_android_clang', |
| 428 'chromium_config_kwargs': { | 428 'chromium_config_kwargs': { |
| 429 'BUILD_CONFIG': 'Debug', | 429 'BUILD_CONFIG': 'Debug', |
| 430 'TARGET_PLATFORM': 'android', | 430 'TARGET_PLATFORM': 'android', |
| 431 'TARGET_ARCH': 'arm', | 431 'TARGET_ARCH': 'arm', |
| 432 'TARGET_BITS': 32, | 432 'TARGET_BITS': 32, |
| 433 }, | 433 }, |
| 434 'testing': {'platform': 'linux'}, | 434 'testing': {'platform': 'linux'}, |
| 435 }, | 435 }, |
| 436 'Android32 x86 Debug': { |
| 437 'recipe_config': 'libyuv_android', |
| 438 'chromium_config_kwargs': { |
| 439 'BUILD_CONFIG': 'Debug', |
| 440 'TARGET_PLATFORM': 'android', |
| 441 'TARGET_ARCH': 'intel', |
| 442 'TARGET_BITS': 32, |
| 443 }, |
| 444 'bot_type': 'builder', |
| 445 'testing': {'platform': 'linux'}, |
| 446 }, |
| 447 'Android32 MIPS Debug': { |
| 448 'recipe_config': 'libyuv_android_clang', |
| 449 'chromium_config_kwargs': { |
| 450 'BUILD_CONFIG': 'Debug', |
| 451 'TARGET_PLATFORM': 'android', |
| 452 'TARGET_ARCH': 'mipsel', |
| 453 'TARGET_BITS': 32, |
| 454 }, |
| 455 'bot_type': 'builder', |
| 456 'testing': {'platform': 'linux'}, |
| 457 }, |
| 458 'Android64 x64 Debug': { |
| 459 'recipe_config': 'libyuv_android', |
| 460 'chromium_config_kwargs': { |
| 461 'BUILD_CONFIG': 'Debug', |
| 462 'TARGET_PLATFORM': 'android', |
| 463 'TARGET_ARCH': 'intel', |
| 464 'TARGET_BITS': 64, |
| 465 }, |
| 466 'bot_type': 'builder', |
| 467 'testing': {'platform': 'linux'}, |
| 468 }, |
| 436 'Android Debug (GN)': { | 469 'Android Debug (GN)': { |
| 437 'recipe_config': 'libyuv_android', | 470 'recipe_config': 'libyuv_android', |
| 438 'chromium_apply_config': ['gn'], | 471 'chromium_apply_config': ['gn'], |
| 439 'chromium_config_kwargs': { | 472 'chromium_config_kwargs': { |
| 440 'BUILD_CONFIG': 'Debug', | 473 'BUILD_CONFIG': 'Debug', |
| 441 'TARGET_PLATFORM': 'android', | 474 'TARGET_PLATFORM': 'android', |
| 442 'TARGET_ARCH': 'arm', | 475 'TARGET_ARCH': 'arm', |
| 443 'TARGET_BITS': 32, | 476 'TARGET_BITS': 32, |
| 444 }, | 477 }, |
| 445 'testing': {'platform': 'linux'}, | 478 'testing': {'platform': 'linux'}, |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 731 'android_arm64': { | 764 'android_arm64': { |
| 732 'recipe_config': 'libyuv_android', | 765 'recipe_config': 'libyuv_android', |
| 733 'chromium_config_kwargs': { | 766 'chromium_config_kwargs': { |
| 734 'BUILD_CONFIG': 'Debug', | 767 'BUILD_CONFIG': 'Debug', |
| 735 'TARGET_PLATFORM': 'android', | 768 'TARGET_PLATFORM': 'android', |
| 736 'TARGET_ARCH': 'arm', | 769 'TARGET_ARCH': 'arm', |
| 737 'TARGET_BITS': 64, | 770 'TARGET_BITS': 64, |
| 738 }, | 771 }, |
| 739 'testing': {'platform': 'linux'}, | 772 'testing': {'platform': 'linux'}, |
| 740 }, | 773 }, |
| 774 'android_x86': { |
| 775 'recipe_config': 'libyuv_android', |
| 776 'chromium_config_kwargs': { |
| 777 'BUILD_CONFIG': 'Debug', |
| 778 'TARGET_PLATFORM': 'android', |
| 779 'TARGET_ARCH': 'intel', |
| 780 'TARGET_BITS': 32, |
| 781 }, |
| 782 'testing': {'platform': 'linux'}, |
| 783 }, |
| 784 'android_x64': { |
| 785 'recipe_config': 'libyuv_android', |
| 786 'chromium_config_kwargs': { |
| 787 'BUILD_CONFIG': 'Debug', |
| 788 'TARGET_PLATFORM': 'android', |
| 789 'TARGET_ARCH': 'intel', |
| 790 'TARGET_BITS': 64, |
| 791 }, |
| 792 'testing': {'platform': 'linux'}, |
| 793 }, |
| 794 'android_mips': { |
| 795 'recipe_config': 'libyuv_android_clang', |
| 796 'chromium_config_kwargs': { |
| 797 'BUILD_CONFIG': 'Debug', |
| 798 'TARGET_PLATFORM': 'android', |
| 799 'TARGET_ARCH': 'mipsel', |
| 800 'TARGET_BITS': 32, |
| 801 }, |
| 802 'testing': {'platform': 'linux'}, |
| 803 }, |
| 741 'android_gn': { | 804 'android_gn': { |
| 742 'recipe_config': 'libyuv_android', | 805 'recipe_config': 'libyuv_android', |
| 743 'chromium_apply_config': ['gn'], | 806 'chromium_apply_config': ['gn'], |
| 744 'chromium_config_kwargs': { | 807 'chromium_config_kwargs': { |
| 745 'BUILD_CONFIG': 'Debug', | 808 'BUILD_CONFIG': 'Debug', |
| 746 'TARGET_PLATFORM': 'android', | 809 'TARGET_PLATFORM': 'android', |
| 747 'TARGET_ARCH': 'arm', | 810 'TARGET_ARCH': 'arm', |
| 748 'TARGET_BITS': 32, | 811 'TARGET_BITS': 32, |
| 749 }, | 812 }, |
| 750 'testing': {'platform': 'linux'}, | 813 'testing': {'platform': 'linux'}, |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 | 896 |
| 834 # Forced builds (not specifying any revision) and test failures. | 897 # Forced builds (not specifying any revision) and test failures. |
| 835 mastername = 'client.libyuv' | 898 mastername = 'client.libyuv' |
| 836 yield generate_builder(mastername, 'Linux64 Debug', revision=None, | 899 yield generate_builder(mastername, 'Linux64 Debug', revision=None, |
| 837 suffix='_forced') | 900 suffix='_forced') |
| 838 yield generate_builder(mastername, 'Android Debug', revision=None, | 901 yield generate_builder(mastername, 'Android Debug', revision=None, |
| 839 suffix='_forced') | 902 suffix='_forced') |
| 840 | 903 |
| 841 yield generate_builder('tryserver.libyuv', 'linux', revision=None, | 904 yield generate_builder('tryserver.libyuv', 'linux', revision=None, |
| 842 suffix='_forced') | 905 suffix='_forced') |
| OLD | NEW |