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

Unified Diff: tools/presubmit.py

Issue 454693004: Skip gmock and gtest in presubmit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 months 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/presubmit.py
diff --git a/tools/presubmit.py b/tools/presubmit.py
index aba5005a06d03b03ea20e6eccb1841a25a797859..4b22444f9eac3ec474d96898f8e5e75cf92f9581 100755
--- a/tools/presubmit.py
+++ b/tools/presubmit.py
@@ -200,7 +200,8 @@ class SourceFileProcessor(object):
def IgnoreDir(self, name):
return (name.startswith('.') or
- name in ('buildtools', 'data', 'kraken', 'octane', 'sunspider'))
+ name in ('buildtools', 'data', 'gmock', 'gtest', 'kraken',
+ 'octane', 'sunspider'))
def IgnoreFile(self, name):
return name.startswith('.')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698