Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(688)

Unified Diff: scripts/slave/recipes/libyuv/libyuv.py

Issue 2015883002: libyuv: Add Android x86, x64 and MIPS bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipes/libyuv/libyuv.py
diff --git a/scripts/slave/recipes/libyuv/libyuv.py b/scripts/slave/recipes/libyuv/libyuv.py
index 0c4146dedcb3fd5b83a55d118b6c2e42a7130e7c..609b5bc50cba4f11325a22d80019d0ace372ce29 100644
--- a/scripts/slave/recipes/libyuv/libyuv.py
+++ b/scripts/slave/recipes/libyuv/libyuv.py
@@ -433,6 +433,39 @@ BUILDERS = freeze({
},
'testing': {'platform': 'linux'},
},
+ 'Android32 x86 Debug': {
+ 'recipe_config': 'libyuv_android',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'intel',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'linux'},
+ },
+ 'Android32 MIPS Debug': {
+ 'recipe_config': 'libyuv_android_clang',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'mipsel',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'linux'},
+ },
+ 'Android64 x64 Debug': {
+ 'recipe_config': 'libyuv_android',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'intel',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'linux'},
+ },
'Android Debug (GN)': {
'recipe_config': 'libyuv_android',
'chromium_apply_config': ['gn'],
@@ -738,6 +771,36 @@ BUILDERS = freeze({
},
'testing': {'platform': 'linux'},
},
+ 'android_x86': {
+ 'recipe_config': 'libyuv_android',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'intel',
+ 'TARGET_BITS': 32,
+ },
+ 'testing': {'platform': 'linux'},
+ },
+ 'android_x64': {
+ 'recipe_config': 'libyuv_android',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'intel',
+ 'TARGET_BITS': 64,
+ },
+ 'testing': {'platform': 'linux'},
+ },
+ 'android_mips': {
+ 'recipe_config': 'libyuv_android_clang',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'mipsel',
+ 'TARGET_BITS': 32,
+ },
+ 'testing': {'platform': 'linux'},
+ },
'android_gn': {
'recipe_config': 'libyuv_android',
'chromium_apply_config': ['gn'],

Powered by Google App Engine
This is Rietveld 408576698