| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index ee872e269c047ec2b64fafdb93537f3d7bc0149f..3b39479546837f61a5219ecbaa4a6b29a1589256 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -361,7 +361,8 @@ def _CheckNoNewWStrings(input_api, output_api):
|
| problems = []
|
| for f in input_api.AffectedFiles():
|
| if (not f.LocalPath().endswith(('.cc', '.h')) or
|
| - f.LocalPath().endswith(('test.cc', '_win.cc', '_win.h'))):
|
| + f.LocalPath().endswith(('test.cc', '_win.cc', '_win.h')) or
|
| + '/win/' in f.LocalPath()):
|
| continue
|
|
|
| allowWString = False
|
|
|