Chromium Code Reviews| Index: appengine/swarming/proto/config.proto |
| diff --git a/appengine/swarming/proto/config.proto b/appengine/swarming/proto/config.proto |
| index d3f29faded327c43a1dc0cea104a3755eb32269c..99779869830dd620cacdca3a79f3c1e458218b91 100644 |
| --- a/appengine/swarming/proto/config.proto |
| +++ b/appengine/swarming/proto/config.proto |
| @@ -38,6 +38,14 @@ message SettingsCfg { |
| // A mapping "dimension" => "who can posts tasks for it". |
| optional DimensionACLs dimension_acls = 10; |
| + |
| + // A partial url which a task id will be appended. The result should be a |
| + // valid link to the milo output of a task (if any). |
| + optional string milo_server_prefix = 11; |
|
estaab
2016/10/11 18:28:37
We probably don't want swarming to know about serv
kjlubick
2016/10/12 13:55:55
I like it. Done.
|
| + |
| + // A partial url which a Skia git revision will be appended. The result |
| + // should be a valid link to the source code at that revision (if any). |
| + optional string sk_revision_prefix = 12; |
|
estaab
2016/10/11 18:28:37
As above, something like git_revision_url_template
kjlubick
2016/10/12 13:55:55
I'm actually just removing this, as the info is pa
|
| } |