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

Unified Diff: infra/bots/recipes/swarm_compile.py

Issue 2292663002: add gn_android_flavor (Closed)
Patch Set: Created 4 years, 4 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: infra/bots/recipes/swarm_compile.py
diff --git a/infra/bots/recipes/swarm_compile.py b/infra/bots/recipes/swarm_compile.py
index 5ca28edfe5c8179b34b1f50cb8c5adf481d6867b..8d7209016bbe81d570a60558c39bfb3557d037b0 100644
--- a/infra/bots/recipes/swarm_compile.py
+++ b/infra/bots/recipes/swarm_compile.py
@@ -24,8 +24,10 @@ TEST_BUILDERS = {
'skiabot-linux-swarm-000': [
'Build-Mac-Clang-Arm7-Debug-Android',
'Build-Mac-Clang-Arm7-Release-iOS',
+ 'Build-Mac-Clang-mipsel-Debug-GN_Android',
'Build-Mac-Clang-x86_64-Debug-CommandBuffer',
'Build-Mac-Clang-x86_64-Release-CMake',
+ 'Build-Ubuntu-Clang-arm64-Release-GN_Android',
'Build-Ubuntu-Clang-x86_64-Debug-GN',
'Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot',
'Build-Ubuntu-GCC-Arm7-Debug-Android_FrameworkDefs',
@@ -33,8 +35,8 @@ TEST_BUILDERS = {
'Build-Ubuntu-GCC-Arm7-Release-Android',
'Build-Ubuntu-GCC-Arm7-Release-Android_Vulkan',
'Build-Ubuntu-GCC-x86-Debug',
- 'Build-Ubuntu-GCC-x86_64-Debug-MSAN',
'Build-Ubuntu-GCC-x86_64-Debug-GN',
+ 'Build-Ubuntu-GCC-x86_64-Debug-MSAN',
'Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE',
'Build-Ubuntu-GCC-x86_64-Release-ANGLE',
'Build-Ubuntu-GCC-x86_64-Release-CMake',
@@ -246,7 +248,7 @@ def GenTests(api):
ccache = '/usr/bin/ccache'
test += api.step_data('has ccache?',
stdout=api.json.output({'ccache':ccache}))
- if 'Android' in builder:
+ if 'Android' in builder and 'GN_Android' not in builder:
test += api.step_data(
'which adb',
retcode=1)

Powered by Google App Engine
This is Rietveld 408576698