Home | History | Annotate | Download | only in tools

Lines Matching full:opts

209 def RunGClientAndCreateConfig(opts, custom_deps=None, cwd=None):
213 opts: The options parsed from the command line through parse_args().
230 if 'android' in opts.target_platform:
333 def SetupGitDepot(opts, custom_deps):
338 opts: The options parsed from the command line through parse_args().
347 if opts.output_buildbot_annotations:
352 if not RunGClientAndCreateConfig(opts, custom_deps):
372 if opts.output_buildbot_annotations:
427 def SetupAndroidBuildEnvironment(opts, path_to_src=None):
431 opts: The options parsed from the command line through parse_args().
460 def SetupPlatformBuildEnvironment(opts):
464 opts: The options parsed from the command line through parse_args().
469 if 'android' in opts.target_platform:
471 return SetupAndroidBuildEnvironment(opts)
472 elif opts.target_platform == 'cros':
478 def CheckIfBisectDepotExists(opts):
482 opts: The options parsed from the command line through parse_args().
487 path_to_dir = os.path.join(opts.working_directory, 'bisect', 'src')
491 def CreateBisectDirectoryAndSetupDepot(opts, custom_deps):
496 opts: The options parsed from the command line through parse_args().
499 if not CreateAndChangeToSourceDirectory(opts.working_directory):
502 if not SetupGitDepot(opts, custom_deps):