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

Unified Diff: slave/skia_slave_scripts/chrome_canary_update.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
Index: slave/skia_slave_scripts/chrome_canary_update.py
diff --git a/slave/skia_slave_scripts/chrome_canary_update.py b/slave/skia_slave_scripts/chrome_canary_update.py
deleted file mode 100644
index fb61947979af8b53cc7b708a29cf5ee5f36a5f32..0000000000000000000000000000000000000000
--- a/slave/skia_slave_scripts/chrome_canary_update.py
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2013 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.
-
-""" Check out the Skia sources. """
-
-# build_step must be imported first, since it does some tweaking of PYTHONPATH.
-from build_step import BuildStep
-from utils import sync_skia_in_chrome
-import sys
-
-
-class ChromeCanaryUpdate(BuildStep):
- def __init__(self, timeout=24000, no_output_timeout=4800, attempts=5,
- **kwargs):
- super(ChromeCanaryUpdate, self).__init__(
- timeout=timeout,
- no_output_timeout=no_output_timeout,
- attempts=attempts,
- **kwargs)
-
- def _Run(self):
- chrome_rev = self._args.get('chrome_rev',
- sync_skia_in_chrome.CHROME_REV_MASTER)
- skia_rev = (sync_skia_in_chrome.SKIA_REV_DEPS
- if self._args.get('use_lkgr_skia')
- else (self._revision or sync_skia_in_chrome.SKIA_REV_MASTER))
- (got_skia_rev, got_chrome_rev) = sync_skia_in_chrome.Sync(
- skia_revision=skia_rev,
- chrome_revision=chrome_rev,
- gyp_defines=self._flavor_utils.gyp_defines,
- gyp_generators=self._flavor_utils.gyp_generators)
- print 'Skia updated to %s' % got_skia_rev
- print 'Chrome updated to %s' % got_chrome_rev
-
-
-if '__main__' == __name__:
- sys.exit(BuildStep.RunBuildStep(ChromeCanaryUpdate))
« no previous file with comments | « slave/skia_slave_scripts/check_gs_timestamps.py ('k') | slave/skia_slave_scripts/chrome_drt_canary_pretest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698