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

Unified Diff: checkdeps/checkdeps.py

Issue 1975793002: Checkdeps update to default to resolve_dotdot. (Closed) Base URL: https://chromium.googlesource.com/chromium/buildtools.git@master
Patch Set: Changing DepsChecker constructor to resolve_dotdot=True by default Created 4 years, 7 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: checkdeps/checkdeps.py
diff --git a/checkdeps/checkdeps.py b/checkdeps/checkdeps.py
index d61643d708b87fed60f2cb9357722b60da0ef4e6..28ac571933fe1d6e997e54fcdf12689b6ee0bd78 100755
--- a/checkdeps/checkdeps.py
+++ b/checkdeps/checkdeps.py
@@ -43,7 +43,7 @@ class DepsChecker(DepsBuilder):
being_tested=False,
ignore_temp_rules=False,
skip_tests=False,
- resolve_dotdot=False):
+ resolve_dotdot=True):
"""Creates a new DepsChecker.
Args:
@@ -179,8 +179,8 @@ def main():
'', '--json',
help='Path to JSON output file')
option_parser.add_option(
- '', '--resolve-dotdot',
- action='store_true', dest='resolve_dotdot', default=False,
+ '', '--no-resolve-dotdot',
+ action='store_false', dest='resolve_dotdot', default=True,
help='resolve leading ../ in include directive paths relative '
'to the file perfoming the inclusion.')
« 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