HomeSort by relevance Sort by last modified time
    Searched refs:gsutil (Results 1 - 11 of 11) 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/util/
cloud_storage.py 5 """Wrappers for gsutil, for basic interaction with Google Cloud Storage."""
33 _GSUTIL_URL = 'http://storage.googleapis.com/pub/gsutil.tar.gz'
34 _DOWNLOAD_PATH = os.path.join(path.GetTelemetryDir(), 'third_party', 'gsutil')
83 logging.info('Downloading gsutil')
87 logging.info('Downloaded gsutil to %s' % _DOWNLOAD_PATH)
89 return os.path.join(_DOWNLOAD_PATH, 'gsutil')
93 """Return the gsutil executable path. If we can't find it, download it."""
96 os.path.join('third_party', 'gsutil', 'gsutil'), _DOWNLOAD_PATH)
100 # Look for a gsutil installation
    [all...]
  /external/chromium_org/third_party/skia/tools/bug_chomper/
run_server.sh 19 gsutil cp gs://chromium-skia-gm/bugchomper/oauth_client_secret.json .
  /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/third_party/skia/platform_tools/barelinux/bin/
arm64_download 23 Requires gsutil, xz, tar, and gunzip.
47 try gsutil cp "gs://${location}/md5sum.txt" . || return
51 try gsutil cp "gs://${location}/*" . || return
143 for command in gsutil xz tar md5sum gunzip; do
  /external/chromium_org/third_party/skia/platform_tools/chromeos/bin/
chromeos_make 40 #SDK_VERSION=$(gsutil cat gs://chromeos-image-archive/${deviceID}-release/LATEST-master)
51 gsutil cp gs://chromium-skia-gm/chromeos-toolchains/${TARBALL} ${CHROMEOS_CHROOT}
  /external/chromium_org/tools/clang/scripts/
repackage.sh 66 echo gsutil cp -a public-read ${PDIR}_repack.tgz \
package.sh 182 echo gsutil cp -a public-read $PDIR.tgz \
  /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
158 """Delegate all external access; reading/writing to filesystem, gsutil etc."""
189 """Runs gsutil ls |url|
198 """Runs gsutil cat |url|
207 """Runs gsutil cp |src| |dest|
212 stdin: If src is '-', this is used as the stdin to give to gsutil. The
227 def __init__(self, dryrun=False, gsutil=None, mailfrom=None, mailto=None):
232 if gsutil:
233 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/
bisect-builds.py 442 gsutil_path = os.path.join(gsutil_path, 'third_party', 'gsutil', 'gsutil')
443 gsutil = subprocess.Popen([sys.executable, gsutil_path] + args,
446 stdout, stderr = gsutil.communicate()
447 if gsutil.returncode:
457 raise Exception('Error running the gsutil command: %s' % stderr)
    [all...]

Completed in 257 milliseconds