summaryrefslogtreecommitdiffstats
path: root/tools/sort-headers.py
diff options
context:
space:
mode:
authorsatorux <satorux@chromium.org>2015-02-10 00:04:51 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-10 08:05:19 +0000
commit3d23ca0518139be109b6d52a8bf01b55c7ca29e3 (patch)
tree9a6215c3396233fa1f90d31a4615c502f6d2cfac /tools/sort-headers.py
parenta2bb96569246bc5fcd412f163fb56a3340192a50 (diff)
downloadchromium_src-3d23ca0518139be109b6d52a8bf01b55c7ca29e3.zip
chromium_src-3d23ca0518139be109b6d52a8bf01b55c7ca29e3.tar.gz
chromium_src-3d23ca0518139be109b6d52a8bf01b55c7ca29e3.tar.bz2
tools/sort_sources.py: sort C++ source file names in build files.
tools/git/move_source_file.py updates C++ source file names in build files for you, but it does not sort the updated file names. With this tool, you can sort C++ source file names in build files (both GYP and GN files supported) automatically. It's not perfect but should work reasonably well. BUG=456014 TEST=Run the tool against some build files. The results are included in the patch. Review URL: https://codereview.chromium.org/888873003 Cr-Commit-Position: refs/heads/master@{#315517}
Diffstat (limited to 'tools/sort-headers.py')
-rwxr-xr-xtools/sort-headers.py23
1 files changed, 1 insertions, 22 deletions
diff --git a/tools/sort-headers.py b/tools/sort-headers.py
index 3f3435d..5e8fc26 100755
--- a/tools/sort-headers.py
+++ b/tools/sort-headers.py
@@ -13,28 +13,7 @@ import optparse
import os
import sys
-
-def YesNo(prompt):
- """Prompts with a yes/no question, returns True if yes."""
- print prompt,
- sys.stdout.flush()
- # http://code.activestate.com/recipes/134892/
- if sys.platform == 'win32':
- import msvcrt
- ch = msvcrt.getch()
- else:
- import termios
- import tty
- fd = sys.stdin.fileno()
- old_settings = termios.tcgetattr(fd)
- ch = 'n'
- try:
- tty.setraw(sys.stdin.fileno())
- ch = sys.stdin.read(1)
- finally:
- termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
- print ch
- return ch in ('Y', 'y')
+from yes_no import YesNo
def IncludeCompareKey(line):