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

Unified Diff: tools/auto_bisect/fetch_build.py

Issue 2300653002: [tools/perf] Update code to reference py_utils.cloud_storage (Closed)
Patch Set: update Created 4 years, 4 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 | « content/test/gpu/page_sets/PRESUBMIT.py ('k') | tools/perf/PRESUBMIT.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/auto_bisect/fetch_build.py
diff --git a/tools/auto_bisect/fetch_build.py b/tools/auto_bisect/fetch_build.py
index 27cd66866b822dbf16a56439d64e7d54d20b0322..321bc82e431edb23f1834fbe93ea201d3b20d913 100644
--- a/tools/auto_bisect/fetch_build.py
+++ b/tools/auto_bisect/fetch_build.py
@@ -22,12 +22,12 @@ import shutil
import sys
import zipfile
-_CATAPULT_BASE_PATH = os.path.abspath(os.path.join(
+_PY_UTILS_PATH = os.path.abspath(os.path.join(
os.path.dirname(__file__), '..', '..', 'third_party', 'catapult',
- 'catapult_base'))
-if _CATAPULT_BASE_PATH not in sys.path:
- sys.path.insert(1, _CATAPULT_BASE_PATH)
-from catapult_base import cloud_storage
+ 'common', 'py_utils'))
+if _PY_UTILS_PATH not in sys.path:
+ sys.path.insert(1, _PY_UTILS_PATH)
+from py_utils import cloud_storage
import bisect_utils
« no previous file with comments | « content/test/gpu/page_sets/PRESUBMIT.py ('k') | tools/perf/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698