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

Unified Diff: Tools/GardeningServer/model/ct-repositories.html

Issue 413073004: Show non-Blink ranges in sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address review comments Created 6 years, 5 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/GardeningServer/model/ct-failure.html ('k') | Tools/GardeningServer/model/ct-repository.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/model/ct-repositories.html
diff --git a/Tools/GardeningServer/model/ct-repositories.html b/Tools/GardeningServer/model/ct-repositories.html
new file mode 100644
index 0000000000000000000000000000000000000000..0bbe3da20fbc218a18702d1274e8fb1ed8108cd8
--- /dev/null
+++ b/Tools/GardeningServer/model/ct-repositories.html
@@ -0,0 +1,32 @@
+<!--
+Copyright 2014 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel='import' href='ct-repository.html'>
+
+<script>
+function CTRepositories() {
+ // FIXME: Include skia once their commit messages have a numeric value we can use.
+ // Right now it only has git hashes.
+ this.repositories = {
+ blink: new CTRepository(
+ 'blink',
+ 'https://chromium.googlesource.com/chromium/blink/+log?format=json',
+ 'http://src.chromium.org/viewvc/blink?view=rev&revision={revision}'),
+ chromium: new CTRepository(
+ 'chromium',
+ 'https://chromium.googlesource.com/chromium/src/+log?format=json',
+ 'http://src.chromium.org/viewvc/chrome?view=rev&revision={revision}'),
+ nacl: new CTRepository(
+ 'nacl',
+ 'https://chromium.googlesource.com/native_client/src/native_client/+log/master?format=json',
+ 'http://src.chromium.org/viewvc/native_client?view=rev&revision={revision}'),
+ v8: new CTRepository(
+ 'v8',
+ 'https://chromium.googlesource.com/external/v8/+log/master?format=json',
+ 'https://code.google.com/p/v8/source/detail?r={revision}'),
+ };
+}
+</script>
« no previous file with comments | « Tools/GardeningServer/model/ct-failure.html ('k') | Tools/GardeningServer/model/ct-repository.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698