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

Unified Diff: recipes/blink.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/android.py ('k') | recipes/chromium.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes/blink.py
diff --git a/recipes/blink.py b/recipes/blink.py
index fba16fb1564c474166e8d67862c46f8afbce3469..b3dd8f689faf9e171ff7d8b47c381cb473334917 100644
--- a/recipes/blink.py
+++ b/recipes/blink.py
@@ -3,10 +3,12 @@
# found in the LICENSE file.
import json
-# 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 Blink(recipe_util.Recipe):
"""Basic Recipe alias for Blink -> Chromium."""
@@ -20,16 +22,19 @@ class Blink(recipe_util.Recipe):
'svn_ref': 'master',
}
}
- return {'alias': {
+ return {
+ 'alias': {
'recipe': 'chromium',
- 'props': ['--webkit_rev=ToT',
- '--submodule_git_svn_spec=' + json.dumps(submodule_spec)]
- }
+ 'props': [
+ '--webkit_rev=ToT',
+ '--submodule_git_svn_spec=' + json.dumps(submodule_spec),
+ ],
+ },
}
def main(argv=None):
- Blink().handle_args(argv)
+ return Blink().handle_args(argv)
if __name__ == '__main__':
« no previous file with comments | « recipes/android.py ('k') | recipes/chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698