Commit 5fb3f7af authored by Mike Frysinger's avatar Mike Frysinger Committed by Commit Bot

grit: fix tool ordering in help output

This array has been alphabetically sorted except for the android2grd
tool.  Move that up to the first entry.

Change-Id: I652dc13cbfb7cee7af14f64c17539388bdc606c9
Reviewed-on: https://chromium-review.googlesource.com/c/1338465Reviewed-by: default avatarRobert Flack <flackr@chromium.org>
Commit-Queue: Mike Frysinger <vapier@chromium.org>
Cr-Commit-Position: refs/heads/master@{#608594}
parent 2885b88f
......@@ -80,6 +80,9 @@ _HIDDEN = 3 # optional key - presence indicates tool is hidden
# Maps tool names to the tool's module. Done as a list of (key, value) tuples
# instead of a map to preserve ordering.
_TOOLS = [
['android2grd', {
_FACTORY: ToolAndroid2Grd,
_REQUIRES_INPUT : False }],
['build', { _FACTORY : ToolFactoryBuild, _REQUIRES_INPUT : True }],
['buildinfo', { _FACTORY : ToolFactoryBuildInfo, _REQUIRES_INPUT : True }],
['count', { _FACTORY : ToolFactoryCount, _REQUIRES_INPUT : True }],
......@@ -99,9 +102,6 @@ _TOOLS = [
_REQUIRES_INPUT : False }],
['unit', { _FACTORY : ToolFactoryUnit, _REQUIRES_INPUT : False }],
['xmb', { _FACTORY : ToolFactoryXmb, _REQUIRES_INPUT : True }],
['android2grd', {
_FACTORY: ToolAndroid2Grd,
_REQUIRES_INPUT : False }],
]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment