| Index: recipes/naclports.py
|
| diff --git a/recipes/naclports.py b/recipes/naclports.py
|
| index a675cbdfba52761320b8f643dd516a198b656ca0..3e687418abc2ded811f6e64becc40cf403249f2b 100644
|
| --- a/recipes/naclports.py
|
| +++ b/recipes/naclports.py
|
| @@ -24,23 +24,14 @@ class Naclports(recipe_util.Recipe):
|
| }
|
| spec = {
|
| 'solutions': [solution],
|
| - 'svn_url': 'https://naclports.googlecode.com/svn',
|
| - 'svn_branch': 'trunk/src',
|
| - 'svn_ref': 'master',
|
| }
|
| - 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(',')
|
| if props.get('target_os_only'):
|
| spec['target_os_only'] = props['target_os_only']
|
| - 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,
|
| + 'type': 'gclient_git',
|
| + 'gclient_git_spec': spec,
|
| }
|
|
|
| @staticmethod
|
|
|