summaryrefslogtreecommitdiffstats
path: root/tools/prepare-bisect-perf-regression.py
diff options
context:
space:
mode:
authorsimonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-10 23:49:42 +0000
committersimonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-10 23:49:42 +0000
commitbda7af447e05d67e293169a9f9cf9e782adfe53e (patch)
treec7a54717ba34cc5dbe1047d56a5a1310da05654e /tools/prepare-bisect-perf-regression.py
parent949536b580e9e884f5b5aafce54aa9c20a3f247c (diff)
downloadchromium_src-bda7af447e05d67e293169a9f9cf9e782adfe53e.zip
chromium_src-bda7af447e05d67e293169a9f9cf9e782adfe53e.tar.gz
chromium_src-bda7af447e05d67e293169a9f9cf9e782adfe53e.tar.bz2
First pass android support in bisect script.
BUG=245361 Review URL: https://chromiumcodereview.appspot.com/16132012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205351 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/prepare-bisect-perf-regression.py')
-rwxr-xr-xtools/prepare-bisect-perf-regression.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/prepare-bisect-perf-regression.py b/tools/prepare-bisect-perf-regression.py
index fbecafd..a98a42e 100755
--- a/tools/prepare-bisect-perf-regression.py
+++ b/tools/prepare-bisect-perf-regression.py
@@ -41,6 +41,14 @@ def main():
parser.add_option('--output_buildbot_annotations',
action="store_true",
help='Add extra annotation output for buildbot.')
+ parser.add_option('--target_platform',
+ type='choice',
+ choices=['chromium', 'cros', 'android'],
+ default='chromium',
+ help='The target platform. Choices are "chromium" (current '
+ 'platform), "cros", or "android". If you specify something '
+ 'other than "chromium", you must be properly set up to '
+ 'build that platform.')
(opts, args) = parser.parse_args()
if not opts.working_directory: