| Index: base/PRESUBMIT.py
|
| diff --git a/base/PRESUBMIT.py b/base/PRESUBMIT.py
|
| index c84a99287bb80eb18e12f4eaefa8872f4d04cadc..7137c5a0101e42eb797787ef6d4e26abc38be1ce 100644
|
| --- a/base/PRESUBMIT.py
|
| +++ b/base/PRESUBMIT.py
|
| @@ -15,7 +15,8 @@ def _CheckNoInterfacesInBase(input_api, output_api):
|
| for f in input_api.AffectedSourceFiles(input_api.FilterSourceFile):
|
| if (f.LocalPath().startswith('base/') and
|
| not "/test/" in f.LocalPath() and
|
| - not f.LocalPath().endswith('_unittest.mm')):
|
| + not f.LocalPath().endswith('_unittest.mm') and
|
| + not f.LocalPath().endswith('mac/sdk_forward_declarations.h')):
|
| contents = input_api.ReadFile(f)
|
| if pattern.search(contents):
|
| files.append(f)
|
|
|