| Index: chrome/common/extensions/PRESUBMIT.py
|
| diff --git a/chrome/common/extensions/PRESUBMIT.py b/chrome/common/extensions/PRESUBMIT.py
|
| index 8dc898968db59185bb37a1eee59de7269e4fe567..b621d4b658380159007497dabf0fb7794602b083 100644
|
| --- a/chrome/common/extensions/PRESUBMIT.py
|
| +++ b/chrome/common/extensions/PRESUBMIT.py
|
| @@ -87,7 +87,7 @@ def IsSkippedFile(path, input_api):
|
|
|
| def IsApiFile(path, input_api):
|
| return (input_api.os_path.dirname(path) == API_DIR and
|
| - path.endswith('.json'))
|
| + (path.endswith('.json') or path.endswith('.idl')))
|
|
|
| def IsBuildFile(path, input_api):
|
| return input_api.os_path.dirname(path) == BUILD_DIR
|
|
|