depot_tools
module provides safe functions to access paths within the depot_tools repo.osx_sdk
module provides safe functions to access a semi-hermetic XCode installation.windows_sdk
module provides safe functions to access a hermetic Microsoft Visual Studio installation which is derived from Chromium's MSVC toolchain.DEPS: depot_tools, gclient, gerrit, gitiles, gsutil, tryserver, recipe_engine/archive, recipe_engine/buildbucket, recipe_engine/commit_position, recipe_engine/context, recipe_engine/cv, recipe_engine/json, recipe_engine/led, recipe_engine/milo, recipe_engine/path, recipe_engine/platform, recipe_engine/properties, recipe_engine/raw_io, recipe_engine/runtime, recipe_engine/step, recipe_engine/warning
Recipe module to ensure a checkout is consistent on a bot.
— def __call__(self, name, cmd, **kwargs):
Wrapper for easy calling of bot_update.
— def deapply_patch(self, bot_update_result):
Deapplies a patch, taking care of DEPS and solution revisions properly.
— def ensure_checkout(self, gclient_config=None, suffix=None, patch=True, update_presentation=True, patch_root=None, with_branch_heads=False, with_tags=False, no_fetch_tags=False, refs=None, clobber=False, root_solution_revision=None, gerrit_no_reset=False, gerrit_no_rebase_patch_ref=False, assert_one_gerrit_change=True, patch_refs=None, ignore_input_commit=False, add_blamelists=False, set_output_commit=False, step_test_data=None, enforce_fetch=False, download_topics=False, recipe_revision_overrides=None, step_tags=None, **kwargs):
Args:
— def get_project_revision_properties(self, project_name, gclient_config=None):
Returns all property names used for storing the checked-out revision of a given project.
Args:
Returns (list of str): All properties that'll hold the checked-out revision of the given project. An empty list if no such properties exist.
@property
— def last_returned_properties(self):
— def resolve_fixed_revision(self, bot_update_result, name):
Sets a fixed revision for a single dependency using project revision properties.
DEPS: recipe_engine/cipd, recipe_engine/context, recipe_engine/platform, recipe_engine/runtime
The depot_tools
module provides safe functions to access paths within the depot_tools repo.
@property
— def cros_path(self):
@property
— def download_from_google_storage_path(self):
@property
— def gn_py_path(self):
@property
— def gsutil_py_path(self):
@contextlib.contextmanager
— def on_path(self):
Use this context manager to put depot_tools on $PATH.
Example:
with api.depot_tools.on_path(): # run some steps
@property
— def presubmit_support_py_path(self):
@property
— def root(self):
Returns (Path): The “depot_tools” root directory.
@property
— def upload_to_google_storage_path(self):
DEPS: git, gitiles, tryserver, recipe_engine/buildbucket, recipe_engine/context, recipe_engine/file, recipe_engine/json, recipe_engine/path, recipe_engine/platform, recipe_engine/properties, recipe_engine/raw_io, recipe_engine/step
@property
— def DepsDiffException(self):
— def __call__(self, name, cmd, infra_step=True, **kwargs):
Wrapper for easy calling of gclient steps.
— def break_locks(self):
Remove all index.lock files. If a previous run of git crashed, bot was reset, etc... we might end up with leftover index.lock files.
— def checkout(self, gclient_config=None, revert=RevertOnTryserver, inject_parent_got_revision=True, extra_sync_flags=None, **kwargs):
Return a step generator function for gclient checkouts.
@staticmethod
— def config_to_pythonish(cfg):
— def diff_deps(self, cwd):
— def get_config_defaults(self):
— def get_gerrit_patch_root(self, gclient_config=None):
Returns local path to the repo where gerrit patch will be applied.
If there is no patch, returns None. If patch is specified, but such repo is not found among configured solutions or repo_path_map, returns name of the first solution. This is done solely for backward compatibility with existing tests. Please do not rely on this logic in new code. Instead, properly map a repository to a local path using repo_path_map. TODO(nodir): remove this. Update all recipe tests to specify a git_repo matching the recipe.
— def get_repo_path(self, repo_url, gclient_config=None):
Returns local path to the repo checkout given its url.
Consults cfg.repo_path_map and fallbacks to urls in configured solutions.
Returns None if not found.
@staticmethod
— def got_revision_reverse_mapping(cfg):
Returns the merged got_revision_reverse_mapping.
Returns (dict): A mapping from property name -> project name. It merges the values of the deprecated got_revision_mapping and the new got_revision_reverse_mapping.
— def inject_parent_got_revision(self, gclient_config=None, override=False):
Match gclient config to build revisions obtained from build_properties.
Args: gclient_config (gclient config object) - The config to manipulate. A value of None manipulates the module's built-in config (self.c). override (bool) - If True, will forcibly set revision and custom_vars even if the config already contains values for them.
— def resolve_revision(self, revision):
— def roll_deps(self, deps_path, dep_updates, strip_prefix_for_gitlink=None, test_data=None):
Updates DEPS file to desired revisions, and returns all requried file changes.
Args: deps_path - Path to DEPS file that will be modified. dep_updates - A map of dependencies to update (key = dependency name, value = revision). strip_prefix_for_gitlink - Prefix that will be removed when adding gitlinks. This is only useful for repositories that use use_relative_path = True. That's currently only chromium/src.
Returns: A map of all files that need to be modified (key = file path, value = file content) in addition to DEPS file itself. Note: that git submodules (gitlinks) are treated as files and content is a commit hash. Note: we expect DEPS to be in the root of the project.
— def runhooks(self, args=None, name=‘runhooks’, **kwargs):
— def set_patch_repo_revision(self, gclient_config=None):
Updates config revision corresponding to patched project.
Useful for bot_update only, as this is the only consumer of gclient‘s config revision map. This doesn’t overwrite the revision if it was already set.
@spec_alias.deleter
— def spec_alias(self):
— def sync(self, cfg, extra_sync_flags=None, **kwargs):
@use_mirror.setter
— def use_mirror(self, val):
DEPS: recipe_engine/context, recipe_engine/file, recipe_engine/json, recipe_engine/path, recipe_engine/raw_io, recipe_engine/step, recipe_engine/time
Module for interact with Gerrit endpoints
— def __call__(self, name, cmd, infra_step=True, **kwargs):
Wrapper for easy calling of gerrit_utils steps.
— def abandon_change(self, host, change, message=None, name=None, step_test_data=None):
— def call_raw_api(self, host, path, method=None, body=None, accept_statuses=None, name=None, **kwargs):
Call an arbitrary Gerrit API that returns a JSON response.
Returns: The JSON response data.
— def create_gerrit_branch(self, host, project, branch, commit, **kwargs):
Creates a new branch from given project and commit
Returns: The ref of the branch created
— def create_gerrit_tag(self, host, project, tag, commit, **kwargs):
Creates a new tag at the given commit.
Returns: The ref of the tag created.
— def get_change_description(self, host, change, patchset, timeout=None, step_test_data=None):
Gets the description for a given CL and patchset.
Args: host: URL of Gerrit host to query. change: The change number. patchset: The patchset number.
Returns: The description corresponding to given CL and patchset.
— def get_changes(self, host, query_params, start=None, limit=None, o_params=None, step_test_data=None, **kwargs):
Queries changes for the given host.
Args:
Returns: A list of change dicts as documented here: https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#list-changes
— def get_gerrit_branch(self, host, project, branch, **kwargs):
Gets a branch from given project and commit
Returns: The revision of the branch
— def get_related_changes(self, host, change, revision=‘current’, step_test_data=None):
Queries related changes for a given host, change, and revision.
Args:
Returns: A related changes dictionary as documented here: https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#related-changes-info
— def get_revision_info(self, host, change, patchset, timeout=None, step_test_data=None):
Returns the info for a given patchset of a given change.
Args: host: Gerrit host to query. change: The change number. patchset: The patchset number.
Returns: A dict for the target revision as documented here: https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#list-changes
— def move_changes(self, host, project, from_branch, to_branch, step_test_data=None):
— def restore_change(self, host, change, message=None, name=None, step_test_data=None):
— def set_change_label(self, host, change, label_name, label_value, name=None, step_test_data=None):
— def update_files(self, host, project, branch, new_contents_by_file_path, commit_msg, params=frozenset([‘status=NEW’]), cc_list=frozenset([]), submit=False, submit_later=False, step_test_data_create_change=None, step_test_data_submit_change=None):
Update a set of files by creating and submitting a Gerrit CL.
Args:
Returns: A ChangeInfo dictionary as documented here: https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#create-change Or if the change is submitted, here: https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#submit-change
DEPS: depot_tools, recipe_engine/buildbucket, recipe_engine/context, recipe_engine/path, recipe_engine/platform, recipe_engine/properties, recipe_engine/raw_io, recipe_engine/runtime, recipe_engine/step
— def __call__(self, *args, **kwargs):
Returns a git command step.
— def bundle_create(self, bundle_path, rev_list_args=None, **kwargs):
Runs ‘git bundle create’ on a Git repository.
Args:
— def cat_file_at_commit(self, file_path, commit_hash, remote_name=None, **kwargs):
Outputs the contents of a file at a given revision.
— def checkout(self, url, ref=None, dir_path=None, recursive=False, submodules=True, submodule_update_force=False, keep_paths=None, step_suffix=None, curl_trace_file=None, raise_on_failure=True, set_got_revision=False, remote_name=None, display_fetch_size=None, file_name=None, submodule_update_recursive=True, use_git_cache=False, progress=True, tags=False, depth=None):
Performs a full git checkout and returns sha1 of checked out revision.
Args:
git count-objects
before and after fetch and display delta. Adds two more steps. Defaults to False.Returns: If the checkout was successful, this returns the commit hash of the checked-out-repo. Otherwise this returns None.
— def config_get(self, prop_name, **kwargs):
Returns git config output.
Args:
Returns: (str) The Git config output, or None if no output was generated.
— def count_objects(self, previous_result=None, raise_on_failure=False, **kwargs):
Returns git count-objects
result as a dict.
Args:
Returns: A dict of count-object values, or None if count-object run failed.
— def fetch_tags(self, remote_name=None, **kwargs):
Fetches all tags from the remote.
— def get_remote_url(self, remote_name=None, **kwargs):
Returns the remote Git repository URL, or None.
Args:
Returns: (str) The URL of the remote Git repository, or None.
— def get_timestamp(self, commit=‘HEAD’, test_data=None, **kwargs):
Find and return the timestamp of the given commit.
— def new_branch(self, branch, name=None, upstream=None, upstream_current=False, **kwargs):
Runs git new-branch on a Git repository, to be used before git cl upload.
Args:
— def number(self, commitrefs=None, test_values=None):
Computes the generation number of some commits.
Args:
Returns: A list of strings containing the generation numbers of the commits. If non-empty commitrefs was provided, the order of the returned numbers will correspond to the order of the provided commitrefs.
— def rebase(self, name_prefix, branch, dir_path, remote_name=None, **kwargs):
Runs rebase HEAD onto branch
Args:
DEPS: recipe_engine/context, recipe_engine/raw_io, recipe_engine/step
— def get_description(self, patch_url=None, **kwargs):
— def issue(self, **kwargs):
— def set_default_repo_location(self, path: Optional[Path]):
Sets the working directory where git cl
will run, unless cwd
from the context module has been set.
If you set path
to None, this will remove the default.
— def set_description(self, description, patch_url=None, **kwargs):
— def upload(self, message, upload_args=None, **kwargs):
DEPS: recipe_engine/json, recipe_engine/path, recipe_engine/raw_io, recipe_engine/step, recipe_engine/url
Module for polling a git repository using the Gitiles web interface.
— def canonicalize_repo_url(self, repo_url):
Returns a canonical form of repo_url. If not recognized, returns as is.
— def commit_log(self, url, commit, step_name=None, attempts=None):
Returns: (dict) the Gitiles commit log structure for a given commit.
Args:
— def download_archive(self, repository_url, destination, revision=‘refs/heads/main’):
Downloads an archive of the repo and extracts it to destination
.
If the gitiles server attempts to provide a tarball with paths which escape destination
, this function will extract all valid files and then raise StepFailure with an attribute StepFailure.gitiles_skipped_files
containing the names of the files that were skipped.
Args:
— def download_file(self, repository_url, file_path, branch=‘main’, step_name=None, attempts=None, **kwargs):
Downloads raw file content from a Gitiles repository.
Args:
Returns: Raw file content.
— def log(self, url, ref, limit=0, cursor=None, step_name=None, attempts=None, **kwargs):
Returns the most recent commits under the given ref with properties.
Args:
Returns: A tuple of (commits, cursor). Commits are a list of commits (as Gitiles dict structure) in reverse chronological order. The number of commits may be higher than limit argument. Cursor can be used for subsequent calls to log for paging. If None, signals that there are no more commits to fetch.
— def parse_repo_url(self, repo_url):
Returns (host, project) pair.
Returns (None, None) if repo_url is not recognized.
— def refs(self, url, step_name=‘refs’, attempts=None):
Returns a list of refs in the remote repository.
— def unparse_repo_url(self, host, project):
Generates a Gitiles repo URL. See also parse_repo_url.
DEPS: recipe_engine/context, recipe_engine/file, recipe_engine/path, recipe_engine/platform, recipe_engine/step
— def __call__(self, cmd, name=None, use_retry_wrapper=True, version=None, parallel_upload=False, multithreaded=False, infra_step=True, dry_run=False, **kwargs):
A step to run arbitrary gsutil commands.
On LUCI this should automatically use the ambient task account credentials. On Buildbot, this assumes that gsutil authentication environment variables (AWS_CREDENTIAL_FILE and BOTO_CONFIG) are already set, though if you want to set them to something else you can always do so using the env={} kwarg.
Note also that gsutil does its own wildcard processing, so wildcards are valid in file-like portions of the cmd. See ‘gsutil help wildcards’.
Args:
— def cat(self, url, args=None, **kwargs):
@contextlib.contextmanager
— def configure_gsutil(self, **kwargs):
Temporarily configures the behavior of gsutil.
For the duration of its context, this method will temporarily append a custom Boto file to the BOTO_PATH env var without overwriting bbagent's BOTO_CONFIG. See https://cloud.google.com/storage/docs/boto-gsutil for possible configurations.
Args: kwargs: Every keyword arg is treated as config line in the temp Boto file.
— def copy(self, source_bucket, source, dest_bucket, dest, args=None, link_name=‘gsutil.copy’, metadata=None, unauthenticated_url=False, **kwargs):
— def download(self, bucket, source, dest, args=None, **kwargs):
— def download_url(self, url, dest, args=None, **kwargs):
@property
— def gsutil_py_path(self):
— def list(self, url, args=None, **kwargs):
— def remove_url(self, url, args=None, **kwargs):
— def signurl(self, private_key_file, bucket, dest, args=None, **kwargs):
— def stat(self, url, args=None, **kwargs):
— def upload(self, source, bucket, dest, args=None, link_name=‘gsutil.upload’, metadata=None, unauthenticated_url=False, **kwargs):
DEPS: recipe_engine/cipd, recipe_engine/context, recipe_engine/json, recipe_engine/path, recipe_engine/platform, recipe_engine/properties, recipe_engine/raw_io, recipe_engine/step, recipe_engine/version
The osx_sdk
module provides safe functions to access a semi-hermetic XCode installation.
Available only to Google-run bots.
API for using OS X SDK distributed via CIPD.
@contextmanager
— def __call__(self, kind):
Sets up the XCode SDK environment.
Is a no-op on non-mac platforms.
This will deploy the helper tool and the XCode.app bundle at api.path.cache_dir / 'osx_sdk'
.
To avoid machines rebuilding these on every run, set up a named cache in your cr-buildbucket.cfg file like:
caches: { # Cache for mac_toolchain tool and XCode.app name: "osx_sdk" path: "osx_sdk" }
If you have builders which e.g. use a non-current SDK, you can give them a uniqely named cache:
caches: { # Cache for N-1 version mac_toolchain tool and XCode.app name: "osx_sdk_old" path: "osx_sdk" }
Similarly, if you have mac and iOS builders you may want to distinguish the cache name by adding ‘_ios’ to it. However, if you're sharing the same bots for both mac and iOS, consider having a single cache and just always fetching the iOS version. This will lead to lower overall disk utilization and should help to reduce cache thrashing.
Usage: with api.osx_sdk(‘mac’): # sdk with mac build bits
with api.osx_sdk(‘ios’): # sdk with mac+iOS build bits
Args: kind (‘mac’|‘ios’): How the SDK should be configured. iOS includes the base XCode distribution, as well as the iOS simulators (which can be quite large).
Raises: StepFailure or InfraFailure.
— def initialize(self):
DEPS: bot_update, depot_tools, gclient, git, tryserver, recipe_engine/buildbucket, recipe_engine/context, recipe_engine/cv, recipe_engine/json, recipe_engine/path, recipe_engine/properties, recipe_engine/resultdb, recipe_engine/step
— def __call__(self, *args, **kwargs):
Returns a presubmit step.
— def execute(self, bot_update_step, skip_owners=False, run_all=False):
Runs presubmit and sets summary markdown if applicable.
Args:
Returns: a RawResult object, suitable for being returned from RunSteps.
— def prepare(self, root_solution_revision=None):
Sets up a presubmit run.
This includes:
This expects the gclient configuration to already have been set.
Args: root_solution_revision: revision of the root solution
Returns: the StepResult from the bot_update step.
@property
— def presubmit_support_path(self):
DEPS: gerrit, git, git_cl, recipe_engine/buildbucket, recipe_engine/context, recipe_engine/json, recipe_engine/led, recipe_engine/path, recipe_engine/platform, recipe_engine/properties, recipe_engine/raw_io, recipe_engine/step
@property
— def constants(self):
@property
— def gerrit_change(self):
Returns current gerrit change, if there is exactly one.
Returns a self.m.buildbucket.common_pb2.GerritChange or None.
@property
— def gerrit_change_fetch_ref(self):
Returns gerrit patch ref, e.g. "refs/heads/45/12345/6, or None.
Populated iff gerrit_change is populated.
@property
— def gerrit_change_number(self):
Returns gerrit change patchset, e.g. 12345 for a patch ref of “refs/heads/45/12345/6”.
Populated iff gerrit_change is populated. Returns None if not populated.
@property
— def gerrit_change_owner(self):
Returns owner of the current Gerrit CL.
Populated iff gerrit_change is populated. Is a dictionary with keys like “name”.
@property
— def gerrit_change_repo_host(self):
Returns the host of the gitiles repo of the current Gerrit CL.
Populated iff gerrit_change is populated.
@property
— def gerrit_change_repo_project(self):
Returns the project of the gitiles repo of the current Gerrit CL.
Populated iff gerrit_change is populated.
@property
— def gerrit_change_repo_url(self):
Returns canonical URL of the gitiles repo of the current Gerrit CL.
Populated iff gerrit_change is populated.
@property
— def gerrit_change_review_url(self):
Returns the review URL for the active patchset.
@property
— def gerrit_change_target_ref(self):
Returns gerrit change destination ref, e.g. “refs/heads/main”.
Populated iff gerrit_change is populated.
@property
— def gerrit_patchset_number(self):
Returns gerrit change patchset, e.g. 6 for a patch ref of “refs/heads/45/12345/6”.
Populated iff gerrit_change is populated Returns None if not populated..
— def get_change_description(self):
Gets the CL description.
— def get_files_affected_by_patch(self, patch_root, report_files_via_property=None, **kwargs):
Returns list of paths to files affected by the patch.
Args:
Returned paths will be relative to to api.path[‘root’].
— def get_footer(self, tag, patch_text=None):
Gets a specific tag from a CL description
— def get_footers(self, patch_text=None):
Retrieves footers from the patch description.
footers are machine readable tags embedded in commit messages. See git-footers documentation for more information.
— def initialize(self):
@property
— def is_gerrit_issue(self):
Returns true iff the properties exist to match a Gerrit issue.
@property
— def is_patch_in_git(self):
@property
— def is_tryserver(self):
Returns true iff we have a change to check out.
— def normalize_footer_name(self, footer):
— def require_is_tryserver(self):
— def set_change(self, change):
Set the gerrit change for this module.
Args:
— def set_compile_failure_tryjob_result(self):
Mark the tryjob result as a compile failure.
— def set_invalid_test_results_tryjob_result(self):
Mark the tryjob result as having invalid test results.
This means we run some tests, but the results were not valid (e.g. no list of specific test cases that failed, or too many tests failing, etc).
— def set_patch_failure_tryjob_result(self):
Mark the tryjob result as failure to apply the patch.
— def set_subproject_tag(self, subproject_tag):
Adds a subproject tag to the build.
This can be used to distinguish between builds that execute different steps depending on what was patched, e.g. blink vs. pure chromium patches.
— def set_test_expired_tryjob_result(self):
Mark the tryjob result as a test expiration.
This means a test task expired and was never scheduled, most likely due to lack of capacity.
— def set_test_failure_tryjob_result(self):
Mark the tryjob result as a test failure.
This means we started running actual tests (not prerequisite steps like checkout or compile), and some of these tests have failed.
— def set_test_timeout_tryjob_result(self):
Mark the tryjob result as a test timeout.
This means tests were scheduled but didn't finish executing within the timeout.
@property
— def valid_footers(self):
DEPS: recipe_engine/cipd, recipe_engine/context, recipe_engine/json, recipe_engine/path, recipe_engine/step
The windows_sdk
module provides safe functions to access a hermetic Microsoft Visual Studio installation which is derived from Chromium's MSVC toolchain.
See (internal):
Available only on Google-run bots.
API for using Windows SDK distributed via CIPD.
@contextmanager
— def __call__(self, path=None, version=None, enabled=True, target_arch=‘x64’):
Sets up the SDK environment when enabled.
Args:
Yields: If enabled, yields SDKPaths object with paths to well-known roots within the deployed bundle: * win_sdk - a Path to the root of the extracted Windows SDK. * dia_sdk - a Path to the root of the extracted Debug Interface Access SDK.
Raises: StepFailure or InfraFailure.
DEPS: bot_update, gclient, gerrit, tryserver, recipe_engine/buildbucket, recipe_engine/json, recipe_engine/path, recipe_engine/platform, recipe_engine/properties, recipe_engine/runtime
@recipe_api.ignore_warnings(‘^depot_tools/BOT_UPDATE_CUSTOM_RESULT_ATTRIBUTES$’)
— def RunSteps(api):
DEPS: bot_update, gclient, recipe_engine/buildbucket, recipe_engine/cv, recipe_engine/properties, recipe_engine/step
— def RunSteps(api):
DEPS: bot_update, gclient, recipe_engine/json
— def RunSteps(api):
DEPS: bot_update, gclient, recipe_engine/json
— def RunSteps(api):
DEPS: bot_update, gclient, recipe_engine/assertions, recipe_engine/buildbucket, recipe_engine/path, recipe_engine/properties
@recipe_api.ignore_warnings(‘^depot_tools/BOT_UPDATE_CUSTOM_RESULT_ATTRIBUTES$’)
— def RunSteps(api, expected_checkout_dir, expected_source_root_name, expected_patch_root_name):
DEPS: depot_tools, recipe_engine/path, recipe_engine/platform, recipe_engine/runtime, recipe_engine/step
— def RunSteps(api):
DEPS: gclient, recipe_engine/assertions, recipe_engine/buildbucket, recipe_engine/context, recipe_engine/file, recipe_engine/path, recipe_engine/properties, recipe_engine/step
— def RunSteps(api):
DEPS: gclient, recipe_engine/assertions, recipe_engine/buildbucket, recipe_engine/path, recipe_engine/platform, recipe_engine/properties, recipe_engine/raw_io
— def RunSteps(api):
DEPS: gclient, recipe_engine/buildbucket, recipe_engine/path, recipe_engine/properties
— def RunSteps(api):
DEPS: gclient, recipe_engine/path
— def RunSteps(api):
DEPS: gerrit, recipe_engine/step
— def RunSteps(api):
DEPS: git, recipe_engine/buildbucket, recipe_engine/context, recipe_engine/path, recipe_engine/platform, recipe_engine/properties, recipe_engine/raw_io, recipe_engine/step
— def RunSteps(api):
DEPS: git, recipe_engine/assertions, recipe_engine/path, recipe_engine/properties
— def RunSteps(api):
DEPS: git_cl, recipe_engine/path, recipe_engine/raw_io, recipe_engine/step
— def RunSteps(api):
DEPS: gitiles, recipe_engine/json, recipe_engine/path, recipe_engine/properties, recipe_engine/step
— def RunSteps(api):
DEPS: gitiles, recipe_engine/properties, recipe_engine/step
— def RunSteps(api):
DEPS: gsutil, recipe_engine/platform, recipe_engine/properties
— def RunSteps(api, boto_configs):
DEPS: gsutil, recipe_engine/path
— def RunSteps(api):
Move things around in a loop!
DEPS: osx_sdk, recipe_engine/platform, recipe_engine/properties, recipe_engine/raw_io, recipe_engine/step
— def RunSteps(api):
DEPS: presubmit, recipe_engine/json
— def RunSteps(api):
DEPS: gclient, presubmit, recipe_engine/buildbucket, recipe_engine/context, recipe_engine/cq, recipe_engine/json, recipe_engine/path, recipe_engine/properties, recipe_engine/runtime
— def RunSteps(api):
DEPS: gclient, presubmit, recipe_engine/buildbucket, recipe_engine/context, recipe_engine/path, recipe_engine/properties, recipe_engine/runtime
— def RunSteps(api, patch_project, patch_repository_url):
DEPS: gerrit, tryserver, recipe_engine/buildbucket, recipe_engine/json, recipe_engine/path, recipe_engine/platform, recipe_engine/properties, recipe_engine/raw_io, recipe_engine/step
— def RunSteps(api):
DEPS: gerrit, tryserver, recipe_engine/buildbucket, recipe_engine/properties
— def RunSteps(api):
DEPS: gerrit, tryserver, recipe_engine/buildbucket, recipe_engine/step
— def RunSteps(api):
DEPS: gerrit, tryserver, recipe_engine/buildbucket, recipe_engine/properties, recipe_engine/step
— def RunSteps(api):
DEPS: tryserver, recipe_engine/buildbucket, recipe_engine/step
— def RunSteps(api):
DEPS: tryserver, recipe_engine/assertions, recipe_engine/path, recipe_engine/platform, recipe_engine/properties
— def RunSteps(api):
DEPS: tryserver, recipe_engine/assertions, recipe_engine/buildbucket, recipe_engine/path, recipe_engine/platform, recipe_engine/properties
— def RunSteps(api):
DEPS: tryserver, recipe_engine/buildbucket, recipe_engine/properties
— def RunSteps(api):
DEPS: windows_sdk, recipe_engine/json, recipe_engine/platform, recipe_engine/properties, recipe_engine/step
— def RunSteps(api):