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

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

Issue 1866763003: libyuv: Add GN bots for Win,Mac,Linux,Android (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix Android names Created 4 years, 8 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 073ed0cf738ddcd6e567b914376146d7fcfdce6d..eadf97978a91ad7f80610cb9e423876e92b707cd 100644
--- a/scripts/slave/recipes/libyuv/libyuv.py
+++ b/scripts/slave/recipes/libyuv/libyuv.py
@@ -186,6 +186,24 @@ BUILDERS = freeze({
},
'testing': {'platform': 'win'},
},
+ 'Win64 Debug (GN)': {
+ 'recipe_config': 'libyuv_clang',
+ 'chromium_apply_config': ['gn'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ },
+ 'testing': {'platform': 'win'},
+ },
+ 'Win64 Release (GN)': {
+ 'recipe_config': 'libyuv_clang',
+ 'chromium_apply_config': ['gn'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'testing': {'platform': 'win'},
+ },
'Mac64 Debug': {
'recipe_config': 'libyuv',
'chromium_config_kwargs': {
@@ -202,6 +220,24 @@ BUILDERS = freeze({
},
'testing': {'platform': 'mac'},
},
+ 'Mac64 Debug (GN)': {
+ 'recipe_config': 'libyuv',
+ 'chromium_apply_config': ['gn'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ },
+ 'testing': {'platform': 'mac'},
+ },
+ 'Mac64 Release (GN)': {
+ 'recipe_config': 'libyuv',
+ 'chromium_apply_config': ['gn'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'testing': {'platform': 'mac'},
+ },
'Mac Asan': {
'recipe_config': 'libyuv_clang',
'chromium_apply_config': ['asan'],
@@ -397,22 +433,22 @@ BUILDERS = freeze({
},
'testing': {'platform': 'linux'},
},
- 'Android GN': {
+ 'Android Debug (GN)': {
'recipe_config': 'libyuv_android',
'chromium_apply_config': ['gn'],
'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
+ 'BUILD_CONFIG': 'Debug',
'TARGET_PLATFORM': 'android',
'TARGET_ARCH': 'arm',
'TARGET_BITS': 32,
},
'testing': {'platform': 'linux'},
},
- 'Android GN (dbg)': {
+ 'Android Release (GN)': {
'recipe_config': 'libyuv_android',
'chromium_apply_config': ['gn'],
'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
+ 'BUILD_CONFIG': 'Release',
'TARGET_PLATFORM': 'android',
'TARGET_ARCH': 'arm',
'TARGET_BITS': 32,
@@ -471,6 +507,24 @@ BUILDERS = freeze({
},
'testing': {'platform': 'win'},
},
+ 'win_x64_gn': {
+ 'recipe_config': 'libyuv_clang',
+ 'chromium_apply_config': ['gn'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ },
+ 'testing': {'platform': 'win'},
+ },
+ 'win_x64_gn_rel': {
+ 'recipe_config': 'libyuv_clang',
+ 'chromium_apply_config': ['gn'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'testing': {'platform': 'win'},
+ },
'mac': {
'recipe_config': 'libyuv',
'chromium_config_kwargs': {
@@ -487,6 +541,24 @@ BUILDERS = freeze({
},
'testing': {'platform': 'mac'},
},
+ 'mac_gn': {
+ 'recipe_config': 'libyuv',
+ 'chromium_apply_config': ['gn'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ },
+ 'testing': {'platform': 'mac'},
+ },
+ 'mac_gn_rel': {
+ 'recipe_config': 'libyuv',
+ 'chromium_apply_config': ['gn'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'testing': {'platform': 'mac'},
+ },
'mac_asan': {
'recipe_config': 'libyuv_clang',
'chromium_apply_config': ['asan'],

Powered by Google App Engine
This is Rietveld 408576698