OLD | NEW |
| (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> | |
OLD | NEW |