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

Unified Diff: scripts/master/factory/chromium_factory.py

Issue 17390019: Add Android device testers for WebRTC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebased Created 7 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/master/factory/chromium_factory.py
diff --git a/scripts/master/factory/chromium_factory.py b/scripts/master/factory/chromium_factory.py
index 356621b581441df7c19d6ba14b812fde876cd973..04e83e3eadef1581430fdf81c300bee08ba11bf6 100644
--- a/scripts/master/factory/chromium_factory.py
+++ b/scripts/master/factory/chromium_factory.py
@@ -1205,6 +1205,33 @@ class ChromiumFactory(gclient_factory.GClientFactory):
options, compile_timeout, build_url, project,
factory_properties)
+ def ChromiumWebRTCAndroidFactory(self, annotation_script,
+ branch='master',
+ target='Release',
+ slave_type='AnnotatedBuilderTester',
+ clobber=False,
+ compile_timeout=6000,
+ project=None,
+ factory_properties=None, options=None,
+ tests=None,
+ gclient_deps=None):
+ self._solutions[0].custom_deps_list = [self.CUSTOM_DEPS_WEBRTC_TRUNK]
+ if self._target_os == 'android':
Isaac (away) 2013/08/27 06:15:27 Do you need this conditional? Looks like the deps
kjellander_chromium 2013/08/27 08:14:42 You're right, I don't. I'll just always add it ins
+ self._solutions.append(gclient_factory.GClientSolution(
+ config.Master.trunk_url + '/deps/third_party/webrtc/webrtc.DEPS',
+ name='webrtc.DEPS'))
+ return self.ChromiumAnnotationFactory(annotation_script=annotation_script,
+ branch=branch,
+ target=target,
+ slave_type=slave_type,
+ clobber=clobber,
+ compile_timeout=compile_timeout,
+ project=project,
+ factory_properties=factory_properties,
+ options=options,
+ tests=tests,
+ gclient_deps=gclient_deps)
+
def ChromiumAVPerfFactory(self, target='Release', clobber=False, tests=None,
mode=None, slave_type='BuilderTester',
options=None, compile_timeout=1200,
« masters/master.client.webrtc/master_android_cfg.py ('K') | « masters/master.client.webrtc/slaves.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698