Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: tools/auto_bisect/bisect_utils.py

Issue 359013002: Make a directory in which to put bisect-related modules. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: bisect -> auto_bisect Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/auto_bisect/__init__.py ('k') | tools/auto_bisect/post_perf_builder_job.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Set of operations/utilities related to checking out the depot, and 5 """Set of operations/utilities related to checking out the depot, and
6 outputting annotations on the buildbot waterfall. These are intended to be 6 outputting annotations on the buildbot waterfall. These are intended to be
7 used by the bisection scripts.""" 7 used by the bisection scripts."""
8 8
9 import errno 9 import errno
10 import imp 10 import imp
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 501
502 Args: 502 Args:
503 opts: The options parsed from the command line through parse_args(). 503 opts: The options parsed from the command line through parse_args().
504 custom_deps: A dictionary of additional dependencies to add to .gclient. 504 custom_deps: A dictionary of additional dependencies to add to .gclient.
505 """ 505 """
506 if not CreateAndChangeToSourceDirectory(opts.working_directory): 506 if not CreateAndChangeToSourceDirectory(opts.working_directory):
507 raise RuntimeError('Could not create bisect directory.') 507 raise RuntimeError('Could not create bisect directory.')
508 508
509 if not SetupGitDepot(opts, custom_deps): 509 if not SetupGitDepot(opts, custom_deps):
510 raise RuntimeError('Failed to grab source.') 510 raise RuntimeError('Failed to grab source.')
OLDNEW
« no previous file with comments | « tools/auto_bisect/__init__.py ('k') | tools/auto_bisect/post_perf_builder_job.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698