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

Unified Diff: recipes/chromium.py

Issue 14315010: Add fetch recipe alias targeting Android (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Fix pylint warning disables and import order Created 7 years, 8 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 | « recipes/blink.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes/chromium.py
diff --git a/recipes/chromium.py b/recipes/chromium.py
index b9156ed926c8cbd484dd1641e7c260fc95dfc2fa..212b5a8eb45ca9ea1f270e33e66f3926b72c6cd1 100644
--- a/recipes/chromium.py
+++ b/recipes/chromium.py
@@ -2,10 +2,12 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-# pylint: disable=F0401
-import recipe_util
import sys
+import recipe_util # pylint: disable=F0401
+
+
+# This class doesn't need an __init__ method, so we disable the warning
# pylint: disable=W0232
class Chromium(recipe_util.Recipe):
"""Basic Recipe class for Chromium."""
@@ -30,13 +32,15 @@ class Chromium(recipe_util.Recipe):
}
if props.get('submodule_git_svn_spec'):
spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec']
+ if props.get('target_os'):
+ spec['target_os'] = props['target_os'].split(',')
checkout_type = 'gclient_git_svn'
if props.get('nosvn'):
checkout_type = 'gclient_git'
spec_type = '%s_spec' % checkout_type
return {
'type': checkout_type,
- spec_type: spec
+ spec_type: spec,
}
@staticmethod
« no previous file with comments | « recipes/blink.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698