diff --git a/git-crup b/git-crup index 3b8cc697b..b2d1a92bf 100755 --- a/git-crup +++ b/git-crup @@ -35,7 +35,7 @@ solutions = [{ 'managed': False, 'deps_file': '.DEPS.git', # Uncomment the following if you're doing blink development - # 'custom_vars': {'webkit_rev': ''}, + # 'custom_vars': {'webkit_revision': ''}, }] # ======== .gclient ends ========= diff --git a/recipes/blink.py b/recipes/blink.py index b3dd8f689..2e3aa9ace 100644 --- a/recipes/blink.py +++ b/recipes/blink.py @@ -26,7 +26,7 @@ class Blink(recipe_util.Recipe): 'alias': { 'recipe': 'chromium', 'props': [ - '--webkit_rev=ToT', + '--webkit_revision=ToT', '--submodule_git_svn_spec=' + json.dumps(submodule_spec), ], }, diff --git a/recipes/chromium.py b/recipes/chromium.py index a99fb9ec8..7ebf9841a 100644 --- a/recipes/chromium.py +++ b/recipes/chromium.py @@ -22,8 +22,8 @@ class Chromium(recipe_util.Recipe): 'custom_deps': {}, 'safesync_url': '', } - if props.get('webkit_rev', '') == 'ToT': - solution['custom_vars'] = {'webkit_rev': ''} + if props.get('webkit_revision', '') == 'ToT': + solution['custom_vars'] = {'webkit_revision': ''} spec = { 'solutions': [solution], }