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

Unified 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: Update per jamesr's comments Created 5 years, 7 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 | « sky/HACKING.md ('k') | sky/tools/skygo/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tools/download_sky_server
diff --git a/sky/tools/download_sky_server b/sky/tools/download_sky_server
deleted file mode 100755
index c3a95a1de7eeb5782ed88115a77df33935e827a6..0000000000000000000000000000000000000000
--- a/sky/tools/download_sky_server
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import stat
-import subprocess
-
-from webkitpy.common.system import filesystem
-from webkitpy.common.webkit_finder import WebKitFinder
-
-finder = WebKitFinder(filesystem.FileSystem())
-
-output_file_ = finder.path_from_chromium_base('out', 'downloads', 'sky_server')
-subprocess.call([
- 'download_from_google_storage',
- '--no_resume',
- '--no_auth',
- '--bucket', 'mojo',
- '--sha1_file', finder.path_from_chromium_base('sky', 'tools', 'skygo', 'sky_server.sha1'),
- '--output', output_file_
-])
-os.chmod(output_file_, os.stat(output_file_).st_mode | stat.S_IEXEC)
« no previous file with comments | « sky/HACKING.md ('k') | sky/tools/skygo/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698