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

Side by Side Diff: sky/tools/download_sky_server

Issue 1150033006: Add support for Mac vs. Linux sky_server builds (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Add missing sha1 file Created 5 years, 6 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 unified diff | Download patch
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 os
7 import stat
8 import subprocess
9
10 from webkitpy.common.system import filesystem
11 from webkitpy.common.webkit_finder import WebKitFinder
12
13 finder = WebKitFinder(filesystem.FileSystem())
14
15 output_file_ = finder.path_from_chromium_base('out', 'downloads', 'sky_server')
16 subprocess.call([
17 'download_from_google_storage',
18 '--no_resume',
19 '--no_auth',
20 '--bucket', 'mojo',
21 '--sha1_file', finder.path_from_chromium_base('sky', 'tools', 'skygo', 'sky_ server.sha1'),
22 '--output', output_file_
23 ])
24 os.chmod(output_file_, os.stat(output_file_).st_mode | stat.S_IEXEC)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698