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

Side by Side Diff: Tools/GardeningServer/model/ct-repositories.html

Issue 728023004: Remove GardeningServer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6
7 <link rel='import' href='ct-repository.html'>
8
9 <script>
10 function CTRepositories() {
11 // FIXME: Include skia once their commit messages have a numeric value we can use.
12 // Right now it only has git hashes.
13 this.repositories = {
14 blink: new CTRepository(
15 'blink',
16 'https://chromium.googlesource.com/chromium/blink/+log?format=json',
17 'https://src.chromium.org/viewvc/blink?view=rev&revision={revision}'),
18 chromium: new CTRepository(
19 'chromium',
20 'https://chromium.googlesource.com/chromium/src/+log?format=json',
21 'https://crrev.com/{revision}'),
22 nacl: new CTRepository(
23 'nacl',
24 'https://chromium.googlesource.com/native_client/src/native_client/+lo g/master?format=json',
25 'https://src.chromium.org/viewvc/native_client?view=rev&revision={revi sion}'),
26 v8: new CTRepository(
27 'v8',
28 'https://chromium.googlesource.com/external/v8/+log/master?format=json ',
29 'https://code.google.com/p/v8/source/detail?r={revision}'),
30 };
31 this.names = Object.keys(this.repositories).sort();
32 }
33 </script>
OLDNEW
« no previous file with comments | « Tools/GardeningServer/model/ct-master-failure-group-data.html ('k') | Tools/GardeningServer/model/ct-repository.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698