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 ca
n 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 'http://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 'http://src.chromium.org/viewvc/chrome?view=rev&revision={revision}'
), |
| 22 nacl: new CTRepository( |
| 23 'nacl', |
| 24 'https://chromium.googlesource.com/native_client/src/native_client/+
log/master?format=json', |
| 25 'http://src.chromium.org/viewvc/native_client?view=rev&revision={rev
ision}'), |
| 26 v8: new CTRepository( |
| 27 'v8', |
| 28 'https://chromium.googlesource.com/external/v8/+log/master?format=js
on', |
| 29 'https://code.google.com/p/v8/source/detail?r={revision}'), |
| 30 }; |
| 31 } |
| 32 </script> |
OLD | NEW |