diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-05-14 14:30:56 -0700 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-05-16 19:57:31 -0700 |
commit | 6e7ccf0b49bc3d15f48184064d9c2e3eb76b33f7 (patch) | |
tree | 13df5974f65b81260529196bfa559afb19e7348a /tools/format.py | |
parent | 6ab2c350b7ece99e29f3f6fb433e3ec795846dc0 (diff) |
tools: format .gn files in the 'cli' directory
Diffstat (limited to 'tools/format.py')
-rwxr-xr-x | tools/format.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/format.py b/tools/format.py index 8dec2117c..aa7586c5b 100755 --- a/tools/format.py +++ b/tools/format.py @@ -24,7 +24,7 @@ qrun([clang_format_path, "-i", "-style", "Google"] + find_exts(["core"], [".cc", ".h"])) print "gn format" -for fn in ["BUILD.gn", ".gn"] + find_exts(["build_extra", "core"], +for fn in ["BUILD.gn", ".gn"] + find_exts(["build_extra", "cli", "core"], [".gn", ".gni"]): qrun(["third_party/depot_tools/gn", "format", fn], env=google_env()) |