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

Unified Diff: Tools/GardeningServer/model/ct-builder-repository.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 side-by-side diff with in-line comments
Download patch
Index: Tools/GardeningServer/model/ct-builder-repository.html
diff --git a/Tools/GardeningServer/model/ct-builder-repository.html b/Tools/GardeningServer/model/ct-builder-repository.html
deleted file mode 100644
index f862f1aa2138c43a294e63297e3e6e8ccbdcba04..0000000000000000000000000000000000000000
--- a/Tools/GardeningServer/model/ct-builder-repository.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
-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.
--->
-
-<script>
-
-var CTBuilderRepository;
-
-(function() {
-
- var BLINK_REV_URI = 'https://src.chromium.org/viewvc/blink/?pathrev=<revision>';
- var CHROMIUM_REV_URI = 'https://chromium.googlesource.com/chromium/' +
- 'src/+/<revision>';
-
- var REVISION_URIS = {
- 'chromium': CHROMIUM_REV_URI,
- 'blink': BLINK_REV_URI,
- 'v8': '', // FIXME: Add v8 and nacl revision uris.
- 'nacl': ''
- };
-
- var BUILDER_SORT_ORDER = {
- 'chromium': 1,
- 'blink': 2,
- 'v8': 3,
- 'nacl': 4
- };
-
- CTBuilderRepository = function(name, revision) {
- this.name = name;
- this.revision = revision || '';
- this.uri = REVISION_URIS[this.name].replace('<revision>', this.revision);
- };
-
- CTBuilderRepository.sortFunction = function(a, b) {
- return BUILDER_SORT_ORDER[a.name] > BUILDER_SORT_ORDER[b.name];
- };
-
-})();
-
-</script>
« no previous file with comments | « Tools/GardeningServer/model/ct-builder-list.html ('k') | Tools/GardeningServer/model/ct-builder-status.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698