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

Unified Diff: tools/telemetry/catapult_base/dependency_manager/dependency_manager.py

Issue 1361523003: Add crash_service to Telemetry's isolates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fck
Patch Set: Fix gyp all targets build failure. Created 5 years, 3 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 | « tools/telemetry/BUILD.gn ('k') | tools/telemetry/telemetry/internal/binary_dependencies.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/catapult_base/dependency_manager/dependency_manager.py
diff --git a/tools/telemetry/catapult_base/dependency_manager/dependency_manager.py b/tools/telemetry/catapult_base/dependency_manager/dependency_manager.py
index 29f389f44249860bda3e42a2808b7b7b21f6db51..b99af782fc8482a8061c3cb294480a6e706130a2 100644
--- a/tools/telemetry/catapult_base/dependency_manager/dependency_manager.py
+++ b/tools/telemetry/catapult_base/dependency_manager/dependency_manager.py
@@ -216,7 +216,9 @@ class DependencyManager(object):
if dependency_info:
paths = dependency_info.local_paths
for local_path in paths:
+ logging.info('Trying local_path %s', local_path)
if os.path.exists(local_path):
+ logging.info('local_path %s exists.', local_path)
Dirk Pranke 2015/09/30 18:24:00 Do you really want to commit these logging lines?
aiolos (Not reviewing) 2015/09/30 18:32:16 Done.
return local_path
return None
@@ -265,4 +267,3 @@ class DependencyManager(object):
os.chmod(download_path,
stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR | stat.S_IRGRP)
return os.path.abspath(download_path)
-
« no previous file with comments | « tools/telemetry/BUILD.gn ('k') | tools/telemetry/telemetry/internal/binary_dependencies.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698