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

Unified Diff: scripts/slave/recipe_modules/gsutil/api.py

Issue 1681033003: Remove Mandoline FYI upload step and perf testing (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Add mojo:tests compile target. Created 4 years, 10 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 | « no previous file | scripts/slave/recipes/chromium_mojo.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/gsutil/api.py
diff --git a/scripts/slave/recipe_modules/gsutil/api.py b/scripts/slave/recipe_modules/gsutil/api.py
index 9a5920911bd6ea31d0254e5bd37cbe4af9255d00..2fe7d9fd172934715cec946bc514ea0ba20d3bf0 100644
--- a/scripts/slave/recipe_modules/gsutil/api.py
+++ b/scripts/slave/recipe_modules/gsutil/api.py
@@ -93,13 +93,6 @@ class GSUtilApi(recipe_api.RecipeApi):
name = kwargs.pop('name', 'download_url')
self(cmd, name, **kwargs)
- def ls(self, bucket, path, args=None, **kwargs):
- args = args or []
- full_path = 'gs://%s/%s' % (bucket, path)
- cmd = ['ls'] + args + [full_path]
- name = kwargs.pop('name', 'ls %s' % full_path)
- return self(cmd, name, **kwargs)
-
def cat(self, url, args=None, **kwargs):
args = args or []
url = self._normalize_url(url)
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_mojo.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698