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

Side by Side Diff: sky/tools/download_sky_server

Issue 746373002: Convert sky_server over to a go-based http server. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: address review comments Created 6 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | sky/tools/sky_server » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 import subprocess
7
8 from webkitpy.common.system import filesystem
9 from webkitpy.common.webkit_finder import WebKitFinder
10
11 finder = WebKitFinder(filesystem.FileSystem())
12
13 subprocess.call([
14 'download_from_google_storage',
15 '--no_resume',
16 '--no_auth',
17 '--bucket', 'mojo',
18 '--sha1_file', finder.path_from_chromium_base('sky', 'tools', 'skygo', 'sky_ server.sha1'),
19 '--output', finder.path_from_chromium_base('out', 'downloads', 'sky_server')
20 ])
OLDNEW
« no previous file with comments | « no previous file | sky/tools/sky_server » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698