| Index: pylib/gyp/generator/msvs.py
|
| diff --git a/pylib/gyp/generator/msvs.py b/pylib/gyp/generator/msvs.py
|
| index 24227047b22c92ff83ada1c242985ef7f35021b8..2d15a3570836b33afe08d5f303bd22c316e28cad 100644
|
| --- a/pylib/gyp/generator/msvs.py
|
| +++ b/pylib/gyp/generator/msvs.py
|
| @@ -1274,7 +1274,7 @@ def _PrepareListOfSources(spec, gyp_file):
|
|
|
| # Add in 'action' inputs and outputs.
|
| for a in spec.get('actions', []):
|
| - inputs = a.get('inputs', [])
|
| + inputs = a['inputs']
|
| inputs = [_NormalizedSource(i) for i in inputs]
|
| # Add all inputs to sources and excluded sources.
|
| inputs = set(inputs)
|
|
|