HomeSort by relevance Sort by last modified time
    Searched refs:gsutil (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/native_client_sdk/src/web/
update.sh 3 gsutil cp -a public-read $file gs://nativeclient-mirror/nacl/nacl_sdk
  /external/chromium_org/tools/telemetry/telemetry/page/
cloud_storage.py 5 """Wrappers for gsutil, for basic interaction with Google Cloud Storage."""
23 _GSUTIL_URL = 'http://storage.googleapis.com/pub/gsutil.tar.gz'
24 _DOWNLOAD_PATH = os.path.join(util.GetTelemetryDir(), 'third_party', 'gsutil')
55 logging.info('Downloading gsutil')
59 logging.info('Downloaded gsutil to %s' % _DOWNLOAD_PATH)
61 return os.path.join(_DOWNLOAD_PATH, 'gsutil')
65 """Return the gsutil executable path. If we can't find it, download it."""
70 gsutil_path = os.path.join(path, 'third_party', 'gsutil', 'gsutil')
74 # Look for a gsutil installation
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
upload.py 21 'Usage: %prog upload [--gsutil path/to/gsutil] '
23 self._parser.add_option('--gsutil', default='gsutil',
24 help='path to GSUTIL', metavar='GSUTIL')
57 options.gsutil, 'cp', '-a', 'public-read', filename_zip, gs_path)
64 def _run_gsutil(gsutil, *args):
65 """Run gsutil as a subprocess.
68 *args: Arguments to pass to gsutil. The first argument should be a
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
update_nacl_manifest.py 6 """Script that reads omahaproxy and gsutil to determine version of SDK to put
113 """Delegate all external access; reading/writing to filesystem, gsutil etc."""
153 """Runs gsutil ls |url|
162 """Runs gsutil cat |url|
171 """Runs gsutil cp |src| |dest|
176 stdin: If src is '-', this is used as the stdin to give to gsutil. The
191 def __init__(self, dryrun=False, gsutil=None, mailfrom=None, mailto=None):
196 if gsutil:
197 self.gsutil = gsutil
    [all...]
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/
Makefile 188 # Try the location of gsutil on the bots first...
189 BOT_GSUTIL = /b/build/scripts/slave/gsutil
191 GSUTIL = $(BOT_GSUTIL)
193 GSUTIL = $(shell $(WHICH) gsutil)
194 ifeq (,$(wildcard $(GSUTIL)))
238 @$(GSUTIL) cp -q -a public-read $$($(1)_UPLOADS) $$($(1)_CONTINUOUS_DIR)
253 @$(GSUTIL) ls $$($(1)_CONTINUOUS_UPLOADS)
262 @$(GSUTIL) cp -q -p $$($(1)_CONTINUOUS_UPLOADS) $$($(1)_PUBLISH_DIR)
  /external/chromium_org/tools/clang/scripts/
package.sh 95 echo gsutil cp -a public-read $PDIR.tgz \
  /external/chromium_org/chrome/test/functional/
perf_endure.py 17 Storage bucket like gs://chromium-endure/. The 'gsutil' script in $PATH
18 is used by default, or set a variable 'GSUTIL' to specify a path to the
19 'gsutil' script. A variable 'REVISION' (or 'BUILDBOT_GOT_REVISION') is
21 GSUTIL: A path to the 'gsutil' script. Not mandatory.
110 def SetUp(self, is_linux, revision, gsutil):
123 self._gsutil = gsutil
226 gsutil_command = '%s upload --gsutil %s %s %s' % (
302 _GSUTIL = 'gsutil'
315 self._gsutil = str(os.environ.get('GSUTIL', self._GSUTIL)
    [all...]

Completed in 166 milliseconds