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

Unified Diff: scripts/slave/cipd.py

Issue 1881123003: annotated_run: extract CipdBinary so it can be shared with kitchen_run (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: presubmit Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/slave/annotated_run.py ('k') | scripts/slave/unittests/annotated_run_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/cipd.py
diff --git a/scripts/slave/cipd.py b/scripts/slave/cipd.py
index e9524a4353ccb3582d15b974ed8feab603efda87..114392c4faa36d9719a8b068d4f3c7dbec506ad5 100755
--- a/scripts/slave/cipd.py
+++ b/scripts/slave/cipd.py
@@ -30,6 +30,9 @@ LOGGER = logging.getLogger('cipd')
# Used to contain a CIPD package specification.
CipdPackage = collections.namedtuple('CipdPackage', ('name', 'version'))
+# A CIPD binary description - relative path of the binary within the package.
+CipdBinary = collections.namedtuple('CipdBinary', ('package', 'relpath'))
+
def bootstrap(path):
bootstrap_path = os.path.join(common.env.Build, 'scripts', 'slave',
« no previous file with comments | « scripts/slave/annotated_run.py ('k') | scripts/slave/unittests/annotated_run_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698