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

Unified Diff: git_cl.py

Issue 1666403002: Make "git cl format" format GN files. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 10 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: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 8eda0dc6247d6a75d76174abd0b43ccddc5e9c80..5b5872bbd0db18d96faaeabdd00033d8a13aac8b 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -3534,6 +3534,7 @@ def MatchingFileType(file_name, extensions):
def CMDformat(parser, args):
"""Runs auto-formatting tools (clang-format etc.) on the diff."""
CLANG_EXTS = ['.cc', '.cpp', '.h', '.mm', '.proto', '.java']
+ GN_EXTS = ['.gn', '.gni']
parser.add_option('--full', action='store_true',
help='Reformat the full content of all touched files')
parser.add_option('--dry-run', action='store_true',
@@ -3574,6 +3575,7 @@ def CMDformat(parser, args):
clang_diff_files = [x for x in diff_files if MatchingFileType(x, CLANG_EXTS)]
python_diff_files = [x for x in diff_files if MatchingFileType(x, ['.py'])]
dart_diff_files = [x for x in diff_files if MatchingFileType(x, ['.dart'])]
+ gn_diff_files = [x for x in diff_files if MatchingFileType(x, GN_EXTS)]
top_dir = os.path.normpath(
RunGit(["rev-parse", "--show-toplevel"]).rstrip('\n'))
@@ -3655,6 +3657,16 @@ def CMDformat(parser, args):
'found in this checkout. Files in other languages are still ' +
'formatted.')
+ # Format GN build files. Always run on full build files for canonical form.
+ if gn_diff_files:
+ cmd = ['gn', 'format']
+ if not opts.dry_run and not opts.diff:
+ cmd.append('--in-place')
+ for gn_diff_file in gn_diff_files:
+ stdout = RunCommand(cmd + [gn_diff_file], cwd=top_dir)
+ if opts.diff:
+ sys.stdout.write(stdout)
+
return return_value
« 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