Chromium Code Reviews| Index: scripts/slave/recipe_modules/libyuv/builders.py |
| diff --git a/scripts/slave/recipe_modules/libyuv/builders.py b/scripts/slave/recipe_modules/libyuv/builders.py |
| index 385694163743750947dd5e92989e6bc574df4e01..8e2da7409c7f64bad073ff45d628667861be1d79 100644 |
| --- a/scripts/slave/recipe_modules/libyuv/builders.py |
| +++ b/scripts/slave/recipe_modules/libyuv/builders.py |
| @@ -22,10 +22,12 @@ RECIPE_CONFIGS = freeze({ |
| }, |
| 'libyuv_android': { |
| 'chromium_config': 'libyuv_android', |
| + 'chromium_android_config': 'libyuv', |
| 'gclient_config': 'libyuv_android', |
| }, |
| 'libyuv_android_clang': { |
| 'chromium_config': 'libyuv_android_clang', |
| + 'chromium_android_config': 'libyuv', |
| 'gclient_config': 'libyuv_android', |
| }, |
| 'libyuv_ios': { |
| @@ -36,6 +38,9 @@ RECIPE_CONFIGS = freeze({ |
| BUILDERS = freeze({ |
| 'client.libyuv': { |
| + 'settings': { |
| + 'build_gs_bucket': 'chromium-webrtc', |
|
kjellander_chromium
2016/09/06 06:45:05
I think it's fine sharing our bucket since we're o
|
| + }, |
| 'builders': { |
| 'Win32 Debug (VS2010)': { |
| 'recipe_config': 'libyuv', |
| @@ -442,6 +447,9 @@ BUILDERS = freeze({ |
| }, |
| 'bot_type': 'builder', |
| 'testing': {'platform': 'linux'}, |
| + 'triggers': [ |
| + 'Android Tester ARM32 Debug (Nexus 5X)', |
| + ], |
| }, |
| 'Android Release': { |
| 'recipe_config': 'libyuv_android', |
| @@ -453,6 +461,9 @@ BUILDERS = freeze({ |
| }, |
| 'bot_type': 'builder', |
| 'testing': {'platform': 'linux'}, |
| + 'triggers': [ |
| + 'Android Tester ARM32 Release (Nexus 5X)', |
| + ], |
| }, |
| 'Android ARM64 Debug': { |
| 'recipe_config': 'libyuv_android', |
| @@ -464,6 +475,9 @@ BUILDERS = freeze({ |
| }, |
| 'bot_type': 'builder', |
| 'testing': {'platform': 'linux'}, |
| + 'triggers': [ |
| + 'Android Tester ARM64 Debug (Nexus 5X)', |
| + ], |
| }, |
| 'Android Clang Debug': { |
| 'recipe_config': 'libyuv_android_clang', |
| @@ -533,6 +547,42 @@ BUILDERS = freeze({ |
| 'bot_type': 'builder', |
| 'testing': {'platform': 'linux'}, |
| }, |
| + 'Android Tester ARM32 Debug (Nexus 5X)': { |
| + 'recipe_config': 'libyuv_android', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_PLATFORM': 'android', |
| + 'TARGET_ARCH': 'arm', |
| + 'TARGET_BITS': 32, |
| + }, |
| + 'bot_type': 'tester', |
| + 'parent_buildername': 'Android Debug', |
| + 'testing': {'platform': 'linux'}, |
| + }, |
| + 'Android Tester ARM32 Release (Nexus 5X)': { |
| + 'recipe_config': 'libyuv_android', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_PLATFORM': 'android', |
| + 'TARGET_ARCH': 'arm', |
| + 'TARGET_BITS': 32, |
| + }, |
| + 'bot_type': 'tester', |
| + 'parent_buildername': 'Android Release', |
| + 'testing': {'platform': 'linux'}, |
| + }, |
| + 'Android Tester ARM64 Debug (Nexus 5X)': { |
| + 'recipe_config': 'libyuv_android', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_PLATFORM': 'android', |
| + 'TARGET_ARCH': 'arm', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'tester', |
| + 'parent_buildername': 'Android ARM64 Debug', |
| + 'testing': {'platform': 'linux'}, |
| + }, |
| }, |
| }, |
| 'tryserver.libyuv': { |
| @@ -820,7 +870,7 @@ BUILDERS = freeze({ |
| 'TARGET_ARCH': 'arm', |
| 'TARGET_BITS': 32, |
| }, |
| - 'bot_type': 'builder', |
| + 'bot_type': 'builder_tester', |
| 'testing': {'platform': 'linux'}, |
| }, |
| 'android_rel': { |
| @@ -831,7 +881,7 @@ BUILDERS = freeze({ |
| 'TARGET_ARCH': 'arm', |
| 'TARGET_BITS': 32, |
| }, |
| - 'bot_type': 'builder', |
| + 'bot_type': 'builder_tester', |
| 'testing': {'platform': 'linux'}, |
| }, |
| 'android_clang': { |
| @@ -853,7 +903,7 @@ BUILDERS = freeze({ |
| 'TARGET_ARCH': 'arm', |
| 'TARGET_BITS': 64, |
| }, |
| - 'bot_type': 'builder', |
| + 'bot_type': 'builder_tester', |
| 'testing': {'platform': 'linux'}, |
| }, |
| 'android_x86': { |