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

Unified Diff: master/skia_master_scripts/chromeos_factory.py

Issue 648353002: Remove Skia's forked buildbot code (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Fix launch_slaves, remove more stuff 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: master/skia_master_scripts/chromeos_factory.py
diff --git a/master/skia_master_scripts/chromeos_factory.py b/master/skia_master_scripts/chromeos_factory.py
deleted file mode 100644
index b223b751a08a471d5a84292cb3992d0bf816234b..0000000000000000000000000000000000000000
--- a/master/skia_master_scripts/chromeos_factory.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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.
-
-
-"""Utility class to build the Skia master BuildFactory's for ChromeOS buildbots.
-
-Overrides SkiaFactory with any ChromeOS-specific steps."""
-
-
-from skia_master_scripts import factory as skia_factory
-from buildbot.process.properties import WithProperties
-
-
-class ChromeOSFactory(skia_factory.SkiaFactory):
- """Overrides for ChromeOS builds."""
-
- def __init__(self, board, **kwargs):
- """ Instantiates a ChromeOSFactory with properties and build steps specific
- to ChromeOS devices.
-
- ssh_host: string indicating hostname or ip address of the target device
- ssh_port: string indicating the ssh port on the target device
- """
- skia_factory.SkiaFactory.__init__(self, flavor='chromeos',
- deps_target_os='chromeos', **kwargs)
- self._common_args += ['--ssh_host', WithProperties('%(ssh_host:-None)s'),
- '--ssh_port', WithProperties('%(ssh_port:-None)s'),
- '--board', board]
-

Powered by Google App Engine
This is Rietveld 408576698