Index: masters/master.tryserver.v8/master.cfg |
diff --git a/masters/master.tryserver.v8/master.cfg b/masters/master.tryserver.v8/master.cfg |
index 6482c05932968946e87d86dacab45a3b8737fee1..2282f46c7ca07c715521513ca4bb9b88675dd915 100644 |
--- a/masters/master.tryserver.v8/master.cfg |
+++ b/masters/master.tryserver.v8/master.cfg |
@@ -37,12 +37,13 @@ c['mergeRequests'] = lambda *_: False |
m_annotator = annotator_factory.AnnotatorFactory(ActiveMaster) |
-def m_remote_run(recipe, **kwargs): |
+def m_remote_run_chromium_src(recipe, **kwargs): |
return remote_run_factory.RemoteRunFactory( |
active_master=ActiveMaster, |
- repository='https://chromium.googlesource.com/chromium/tools/build.git', |
+ repository='https://chromium.googlesource.com/chromium/src.git', |
recipe=recipe, |
factory_properties={'path_config': 'kitchen'}, |
+ use_gitiles=True, |
**kwargs) |
# ---------------------------------------------------------------------------- |
@@ -104,17 +105,17 @@ c['builders'] = [ |
c['builders'].extend([ |
{ |
'name': 'v8_linux_chromium_gn_rel', |
- 'factory': m_remote_run('chromium_trybot'), |
+ 'factory': m_remote_run_chromium_src('chromium_trybot'), |
'auto_reboot' : True, |
}, |
{ |
'name': 'v8_android_chromium_gn_dbg', |
- 'factory': m_remote_run('chromium_trybot'), |
+ 'factory': m_remote_run_chromium_src('chromium_trybot'), |
'auto_reboot' : True, |
}, |
{ |
'name': 'v8_linux_blink_rel', |
- 'factory': m_remote_run('chromium_trybot'), |
+ 'factory': m_remote_run_chromium_src('chromium_trybot'), |
'auto_reboot' : True, |
}, |
]) |