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

Unified Diff: content/test/gpu/page_sets/PRESUBMIT.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/gpu_tests/pixel.py ('k') | tools/auto_bisect/fetch_build.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/page_sets/PRESUBMIT.py
diff --git a/content/test/gpu/page_sets/PRESUBMIT.py b/content/test/gpu/page_sets/PRESUBMIT.py
index 6ff67115a90cde2f4881281df0ce81040b9f550d..976efc7a21359d2a4ff725419c95caa64bc1e312 100644
--- a/content/test/gpu/page_sets/PRESUBMIT.py
+++ b/content/test/gpu/page_sets/PRESUBMIT.py
@@ -21,11 +21,11 @@ def _CheckWprShaFiles(input_api, output_api):
"""Check whether the wpr sha files have matching URLs."""
old_sys_path = sys.path
try:
- catapult_base_path = input_api.os_path.join(
- _GetChromiumSrcDir(input_api), 'third_party', 'catapult',
- 'catapult_base')
- sys.path.insert(1, catapult_base_path)
- from catapult_base import cloud_storage # pylint: disable=import-error
+ py_utils_path = input_api.os_path.join(
+ _GetChromiumSrcDir(input_api), 'third_party', 'catapult', 'common',
+ 'py_utils')
+ sys.path.insert(1, py_utils_path)
+ from py_utils import cloud_storage # pylint: disable=import-error
finally:
sys.path = old_sys_path
« no previous file with comments | « content/test/gpu/gpu_tests/pixel.py ('k') | tools/auto_bisect/fetch_build.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698