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

Unified Diff: scripts/slave/recipe_modules/webrtc/chromium_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/chromium_config.py
diff --git a/scripts/slave/recipe_modules/webrtc/chromium_config.py b/scripts/slave/recipe_modules/webrtc/chromium_config.py
index 0eb1585f03310b1cb702f4c8fa8152b489178f3d..57cb427d4484f66d3058d39749c72da839ed8963 100644
--- a/scripts/slave/recipe_modules/webrtc/chromium_config.py
+++ b/scripts/slave/recipe_modules/webrtc/chromium_config.py
@@ -54,19 +54,6 @@ def webrtc_android(c):
def webrtc_android_clang(c):
pass
-@CONFIG_CTX(includes=['android'])
-def webrtc_android_apk(c):
- if c.TARGET_PLATFORM != 'android':
- raise BadConf('Only "android" platform is supported (got: "%s")' %
- c.TARGET_PLATFORM)
- if c.TARGET_ARCH not in SUPPORTED_TARGET_ARCHS:
- raise BadConf('Only "%s" architectures are supported (got: "%s")' %
- (','.join(SUPPORTED_TARGET_ARCHS), c.TARGET_ARCH))
-
- c.compile_py.default_targets = ['android_builder_webrtc']
- c.gyp_env.GYP_GENERATOR_FLAGS['default_target'] = 'android_builder_webrtc'
- c.gyp_env.GYP_DEFINES['include_tests'] = 1
-
@CONFIG_CTX(includes=['chromium', 'static_library'])
def webrtc_ios(c):
if c.HOST_PLATFORM != 'mac':
« no previous file with comments | « scripts/slave/recipe_modules/webrtc/chromium_android_config.py ('k') | scripts/slave/recipe_modules/webrtc/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698