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

Unified Diff: master/skia_master_scripts/android_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/android_factory.py
diff --git a/master/skia_master_scripts/android_factory.py b/master/skia_master_scripts/android_factory.py
deleted file mode 100644
index dc93caafb9fc30d2c27d7be2fdcff052ca16fe1c..0000000000000000000000000000000000000000
--- a/master/skia_master_scripts/android_factory.py
+++ /dev/null
@@ -1,37 +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 Android buildbots.
-
-Overrides SkiaFactory with any Android-specific steps."""
-
-
-from buildbot.process.properties import WithProperties
-from skia_master_scripts import factory as skia_factory
-
-
-class AndroidFactory(skia_factory.SkiaFactory):
- """Overrides for Android builds."""
-
- def __init__(self, device, test_args=None, **kwargs):
- """ Instantiates an AndroidFactory with properties and build steps specific
- to Android devices.
-
- device: string indicating which Android device type we are targeting
- """
- skia_factory.SkiaFactory.__init__(self,
- deps_target_os='android',
- flavor='android',
- build_targets=['all'],
- test_args=list(test_args or []) + \
- ['--match', '~Threaded'],
- **kwargs)
- self._device = device
- self._common_args += ['--device', self._device,
- '--serial', WithProperties('%(serial:-None)s'),
- '--has_root', WithProperties('%(has_root:-True)s'),
- '--android_sdk_root',
- WithProperties('%(android_sdk_root)s')]
-

Powered by Google App Engine
This is Rietveld 408576698