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

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: Additional fixes 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
Index: recipes/blink.py
diff --git a/recipes/blink.py b/recipes/blink.py
index fba16fb1564c474166e8d67862c46f8afbce3469..cf124e235cfc0c4b9023fee14d38f16edc5e43ea 100644
--- a/recipes/blink.py
+++ b/recipes/blink.py
@@ -2,11 +2,13 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import sys
import json
M-A Ruel 2013/04/29 13:43:04 sorted
# pylint: disable=F0401
M-A Ruel 2013/04/29 13:43:04 same as the other file. And separate stdlib from n
import recipe_util
-import sys
+
+# 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__':
« recipes/android.py ('K') | « recipes/android.py ('k') | recipes/chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698