Index: mojo/public/tools/pylib/gs.py |
diff --git a/tools/gs.py b/mojo/public/tools/pylib/gs.py |
old mode 100755 |
new mode 100644 |
similarity index 88% |
rename from tools/gs.py |
rename to mojo/public/tools/pylib/gs.py |
index b277d0502d685699593dab0894fd50ebf9791ddd..5331d16bab118aa72e102325bb8ec76ca90dbbf3 |
--- a/tools/gs.py |
+++ b/mojo/public/tools/pylib/gs.py |
@@ -1,4 +1,3 @@ |
-#!/usr/bin/env python |
# Copyright 2015 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. |
@@ -6,9 +5,11 @@ |
import os |
import subprocess |
import sys |
-import find_depot_tools |
-def download_from_public_bucket(gs_path, output_path): |
+def download_from_public_bucket(gs_path, output_path, find_depot_tools_path): |
viettrungluu
2015/02/12 17:20:25
It occurs to me that this is a very strange API. P
blundell
2015/02/12 19:31:28
Done.
|
+ sys.path.insert(0, find_depot_tools_path) |
+ # pylint: disable=F0401 |
+ import find_depot_tools |
depot_tools_path = find_depot_tools.add_depot_tools_to_path() |
gsutil_exe = os.path.join(depot_tools_path, "third_party", "gsutil", "gsutil") |