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

Unified Diff: appengine/findit/waterfall/extract_deps_info_pipeline.py

Issue 2611723002: Moved http_client_appengine.py from ./common to ./gae_libs/http (Closed)
Patch Set: adding missing __init__.py file Created 3 years, 12 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
Index: appengine/findit/waterfall/extract_deps_info_pipeline.py
diff --git a/appengine/findit/waterfall/extract_deps_info_pipeline.py b/appengine/findit/waterfall/extract_deps_info_pipeline.py
index 6389265f1044db9ea8dca815b244c3d97732a91c..7f8a7133a835299d65f7afccdd2213d5c2c20b32 100644
--- a/appengine/findit/waterfall/extract_deps_info_pipeline.py
+++ b/appengine/findit/waterfall/extract_deps_info_pipeline.py
@@ -5,9 +5,9 @@
import logging
from common import chrome_dependency_fetcher
-from common.http_client_appengine import HttpClientAppengine
from common.pipeline_wrapper import BasePipeline
-from gae_libs.gitiles import cached_gitiles_repository
+from gae_libs.gitiles.cached_gitiles_repository import CachedGitilesRepository
+from gae_libs.http.http_client_appengine import HttpClientAppengine
def _GetOSPlatformName(master_name, builder_name): # pragma: no cover
@@ -47,7 +47,7 @@ def _GetDependencies(chromium_revision, os_platform):
"""Returns the dependencies used by the specified chromium revision."""
deps = {}
dep_fetcher=chrome_dependency_fetcher.ChromeDependencyFetcher(
- cached_gitiles_repository.CachedGitilesRepository(HttpClientAppengine()))
+ CachedGitilesRepository(HttpClientAppengine()))
for path, dependency in dep_fetcher.GetDependency(
chromium_revision, os_platform).iteritems():
deps[path] = {
@@ -81,7 +81,7 @@ def _DetectDependencyRolls(change_logs, os_platform):
"""
deps_rolls = {}
dep_fetcher=chrome_dependency_fetcher.ChromeDependencyFetcher(
- cached_gitiles_repository.CachedGitilesRepository(HttpClientAppengine()))
+ CachedGitilesRepository(HttpClientAppengine()))
for revision, change_log in change_logs.iteritems():
# Check DEPS roll only if the chromium DEPS file is changed by the CL.
for touched_file in change_log['touched_files']:
« no previous file with comments | « appengine/findit/waterfall/detect_first_failure_pipeline.py ('k') | appengine/findit/waterfall/extract_signal_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698