Commit 7d96627b authored by Matthew Cary's avatar Matthew Cary Committed by Commit Bot

Orderfile: turn on system health order profiling.

This sets default orderfile generation to use system health profiling.

Bug: 758566
Change-Id: Ie87f8b2623373861c7bdc44d5dfd866ce3597cd9
Reviewed-on: https://chromium-review.googlesource.com/1228074
Commit-Queue: Matthew Cary <mattcary@chromium.org>
Reviewed-by: default avatarEgor Pasko <pasko@chromium.org>
Reviewed-by: default avatarBenoit L <lizeb@chromium.org>
Cr-Commit-Position: refs/heads/master@{#591674}
parent b1cc597f
...@@ -812,10 +812,11 @@ def CreateArgumentParser(): ...@@ -812,10 +812,11 @@ def CreateArgumentParser():
'--use-goma', action='store_true', help='Enable GOMA.', default=False) '--use-goma', action='store_true', help='Enable GOMA.', default=False)
parser.add_argument('--adb-path', help='Path to the adb binary.') parser.add_argument('--adb-path', help='Path to the adb binary.')
parser.add_argument('--system-health-orderfile', action='store_true', parser.add_argument('--nosystem-health-orderfile', action='store_false',
help=('Create an orderfile based on system health ' dest='system_health_orderfile', default=True,
'benchmarks.'), help=('Create an orderfile based on an about:blank '
default=False) 'startup benchmark instead of system health '
'benchmarks.'))
parser.add_argument('--monochrome', action='store_true', parser.add_argument('--monochrome', action='store_true',
help=('Compile and instrument monochrome (for post-N ' help=('Compile and instrument monochrome (for post-N '
'devices).')) 'devices).'))
......
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