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

Unified Diff: scripts/slave/recipe_modules/webrtc/config.py

Issue 505153002: WebRTC: Remove android_apk recipe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebased Created 6 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: 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):
« no previous file with comments | « scripts/slave/recipe_modules/webrtc/chromium_config.py ('k') | scripts/slave/recipe_modules/webrtc/gclient_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698