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

Unified Diff: master/skia_master_scripts/auto_roll_factory.py

Issue 648353002: Remove Skia's forked buildbot code (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Address comment Created 6 years, 2 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 | « master/skia_master_scripts/android_roll_factory.py ('k') | master/skia_master_scripts/canary_factory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: master/skia_master_scripts/auto_roll_factory.py
diff --git a/master/skia_master_scripts/auto_roll_factory.py b/master/skia_master_scripts/auto_roll_factory.py
deleted file mode 100644
index 746e8c6ca6d56194d529e3239d052ae357f0ab95..0000000000000000000000000000000000000000
--- a/master/skia_master_scripts/auto_roll_factory.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright (c) 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.
-
-
-from canary_factory import CanaryFactory
-
-import builder_name_schema
-
-
-class AutoRollFactory(CanaryFactory):
- """Factory which runs the Blink AutoRoll bot for Skia."""
-
- def __init__(self, **kwargs):
- """Instantiates an AutoRollFactory"""
- CanaryFactory.__init__(self,
- flavor='chrome',
- path_to_skia=['third_party', 'skia'],
- **kwargs)
-
- def Build(self, role=builder_name_schema.BUILDER_ROLE_HOUSEKEEPER,
- clobber=None, **kwargs):
- """Build and return the complete BuildFactory.
-
- role: string; type of builder.
- clobber: boolean indicating whether we should clean before building
- """
- if role != builder_name_schema.BUILDER_ROLE_HOUSEKEEPER:
- raise Exception('Housekeeping builders must have role "%s"' %
- builder_name_schema.BUILDER_ROLE_HOUSEKEEPER)
-
- self.UpdateSteps()
- self.AddSlaveScript(script='do_auto_roll.py', description='AutoRoll')
- self.Validate()
- return self
-
« no previous file with comments | « master/skia_master_scripts/android_roll_factory.py ('k') | master/skia_master_scripts/canary_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698