Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Unified Diff: PRESUBMIT.py

Issue 1439833002: Remove //third_party/wtl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | PRESUBMIT_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | PRESUBMIT_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698