Index: scripts/slave/recipe_modules/webrtc/config.py |
diff --git a/scripts/slave/recipe_modules/webrtc/config.py b/scripts/slave/recipe_modules/webrtc/config.py |
index fac196dc134aecd42410b0bc3bf3b8e0a33d937f..b917b51d43a80342c9f588c5eea302253b981cea 100644 |
--- a/scripts/slave/recipe_modules/webrtc/config.py |
+++ b/scripts/slave/recipe_modules/webrtc/config.py |
@@ -11,13 +11,6 @@ def BaseConfig(PERF_ID=None, PERF_CONFIG=None, **_kwargs): |
return ConfigGroup( |
PERF_ID = Static(PERF_ID), |
PERF_CONFIG = Static(PERF_CONFIG), |
- |
- patch_root_dir = Single(Path, required=False, empty_val=Path('[CHECKOUT]')), |
- |
- # Allow manipulating patches for try jobs. |
- patch_filter_script = Single(Path, required=False), |
- patch_path_filter = Single(basestring, required=False), |
- patch_strip_level = Single(int, required=False, empty_val=0), |
) |
VAR_TEST_MAP = { |
@@ -30,58 +23,34 @@ def TEST_NAME_FORMAT(kwargs): |
config_ctx = config_item_context(BaseConfig, VAR_TEST_MAP, TEST_NAME_FORMAT) |
- |
@config_ctx() |
def webrtc(c): |
pass |
- |
@config_ctx() |
def webrtc_clang(c): |
pass |
- |
@config_ctx() |
def webrtc_asan(c): |
pass |
- |
@config_ctx() |
def webrtc_lsan(c): |
pass |
- |
@config_ctx() |
def webrtc_android(c): |
pass |
- |
@config_ctx() |
def webrtc_android_clang(c): |
pass |
- |
-@config_ctx() |
-def webrtc_android_apk(c): |
- """ Build WebRTC native tests for Android as APKs.""" |
- pass |
- |
- |
-@config_ctx() |
-def webrtc_android_apk_try_builder(c): |
- """ Configure patch manipulation for WebRTC Android APK trybots.""" |
- c.patch_root_dir = Path('[CHECKOUT]', 'third_party', 'webrtc') |
- c.patch_filter_script = Path('[BUILD]', 'scripts', 'slave', |
- 'patch_path_filter.py') |
- c.patch_path_filter = 'webrtc/' |
- c.patch_strip_level = 1 |
- |
- |
@config_ctx() |
def webrtc_ios(c): |
pass |
- |
# Only exists to be able to set the PERF_ID and PERF_CONFIG configurations. |
@config_ctx() |
def chromium(c): |