Chromium Code Reviews| Index: gyp_skia |
| diff --git a/gyp_skia b/gyp_skia |
| index 66adf08cb90b465b680533857a6acb71910d665c..d6cb946a93f7c32e1fe16cc9958c3c2551d0ce3d 100755 |
| --- a/gyp_skia |
| +++ b/gyp_skia |
| @@ -126,6 +126,10 @@ if __name__ == '__main__': |
| # By default, we build 'most' instead of 'all' or 'everything'. See skia.gyp. |
| args.extend(['-Gdefault_target=most']) |
| + # Fail if there are files specified in the project but are missing |
|
epoger
2014/06/04 15:25:42
maybe...
# Fail if any files specified in the pro
jvanverth1
2014/06/04 17:07:14
Done.
|
| + if sys.platform.startswith('win'): |
| + os.environ['GYP_GENERATOR_FLAGS'] = 'msvs_error_on_missing_sources=1' |
|
epoger
2014/06/04 15:25:42
Is it possible for the user to have already specif
jvanverth1
2014/06/04 17:07:14
Done.
|
| + |
| print 'Updating projects from gyp files...' |
| sys.stdout.flush() |