| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index d7195a6d37af1d251949aa8b1df11887a71d3495..30f1151d063c220e3d934144f4726c57029eca89 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -463,9 +463,9 @@ def _CheckIncludeOrderInFile(input_api, f, changed_linenums):
|
| # Exclude the following includes from the check:
|
| # 1) #include <.../...>, e.g., <sys/...> includes often need to appear in a
|
| # specific order.
|
| - # 2) <atlbase.h>, "build/build_config.h"
|
| + # 2) "build/build_config.h"
|
| excluded_include_pattern = input_api.re.compile(
|
| - r'\s*#include (\<.*/.*|\<atlbase\.h\>|"build/build_config.h")')
|
| + r'\s*#include (\<.*/.*|"build/build_config.h")')
|
| custom_include_pattern = input_api.re.compile(r'\s*#include "(?P<FILE>.*)"')
|
| # Match the final or penultimate token if it is xxxtest so we can ignore it
|
| # when considering the special first include.
|
|
|