| Index: pylib/gyp/MSVSUtil.py
|
| diff --git a/pylib/gyp/MSVSUtil.py b/pylib/gyp/MSVSUtil.py
|
| index 0b32e911807844b87179d26ca5c98da3ad1a2223..f5e0c1d8b7632a5608793318a3f71fad34a09375 100644
|
| --- a/pylib/gyp/MSVSUtil.py
|
| +++ b/pylib/gyp/MSVSUtil.py
|
| @@ -110,7 +110,7 @@ def ShardTargets(target_list, target_dicts):
|
| else:
|
| new_target_dicts[t] = target_dicts[t]
|
| # Shard dependencies.
|
| - for t in new_target_dicts:
|
| + for t in sorted(new_target_dicts):
|
| for deptype in ('dependencies', 'dependencies_original'):
|
| dependencies = copy.copy(new_target_dicts[t].get(deptype, []))
|
| new_dependencies = []
|
|
|