Chromium Code Reviews| Index: build/vs_toolchain.py |
| diff --git a/build/vs_toolchain.py b/build/vs_toolchain.py |
| index 12e86546870258eb3b366c9db43a3938e34512e0..a9bd0760e744b812d4dc66ad2a155ace3632561d 100755 |
| --- a/build/vs_toolchain.py |
| +++ b/build/vs_toolchain.py |
| @@ -158,7 +158,7 @@ def _CopyRuntimeImpl(target, source, verbose=True): |
| """ |
| if (os.path.isdir(os.path.dirname(target)) and |
| (not os.path.isfile(target) or |
| - os.stat(target).st_mtime != os.stat(source).st_mtime)): |
| + os.stat(target).st_mtime != os.stat(source).st_mtime)): |
|
gab
2016/04/15 19:11:24
Seems to already be supposed to skip if files have
|
| if verbose: |
| print 'Copying %s to %s...' % (source, target) |
| if os.path.exists(target): |