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

Side by Side Diff: master/skia_master_scripts/nacl_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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5
6 from buildbot.process.properties import WithProperties
7 from factory import SkiaFactory
8
9
10 class NaClFactory(SkiaFactory):
11 """ Subclass of Factory which runs in Native Client. """
12
13 def __init__(self, **kwargs):
14 """ Instantiates a NaClFactory with properties and build steps specific to
15 Native Client builds. """
16 SkiaFactory.__init__(self, flavor='nacl',
17 build_targets=['skia_lib', 'debugger'],
18 **kwargs)
19 self._common_args += ['--nacl_sdk_root',
20 WithProperties('%(nacl_sdk_root)s')]
OLDNEW
« no previous file with comments | « master/skia_master_scripts/monkeypatches.py ('k') | master/skia_master_scripts/recreate_skps_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698