From b985a71f29ee9bd92633658ba7a5ba5c698a14ce Mon Sep 17 00:00:00 2001 From: "sky@chromium.org" Date: Thu, 9 Sep 2010 14:14:20 +0000 Subject: Adds chromeos option to build-bisect. BUG=none TEST=nome Review URL: http://codereview.chromium.org/3319015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58933 0039d316-1c4b-4281-b951-d872f2087c98 --- build/build-bisect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build') diff --git a/build/build-bisect.py b/build/build-bisect.py index 64504bc..f44846a 100755 --- a/build/build-bisect.py +++ b/build/build-bisect.py @@ -97,7 +97,7 @@ def SetArchiveVars(archive): BUILD_ARCHIVE_TYPE = archive BUILD_ARCHIVE_DIR = 'chromium-rel-' + BUILD_ARCHIVE_TYPE - if BUILD_ARCHIVE_TYPE in ('linux', 'linux-64'): + if BUILD_ARCHIVE_TYPE in ('linux', 'linux-64', 'linux-chromiumos'): BUILD_ZIP_NAME = 'chrome-linux.zip' BUILD_DIR_NAME = 'chrome-linux' BUILD_EXE_NAME = 'chrome' @@ -178,7 +178,7 @@ def main(): 'Perform binary search on the snapshot builds.') parser = optparse.OptionParser(usage=usage) # Strangely, the default help output doesn't include the choice list. - choices = ['mac', 'xp', 'linux', 'linux-64'] + choices = ['mac', 'xp', 'linux', 'linux-64', 'linux-chromiumos'] parser.add_option('-a', '--archive', choices = choices, help = 'The buildbot archive to bisect [%s].' % -- cgit v1.1