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

Unified Diff: appengine/findit/common/deps_parser.py

Issue 1950123003: [Findit] Fetch DEPS from buildspec/ instead of trunk for chrome official builds. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Update doc string. Created 4 years, 7 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 | « appengine/findit/common/dependency.py ('k') | appengine/findit/common/http_client_appengine.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/common/deps_parser.py
diff --git a/appengine/findit/common/deps_parser.py b/appengine/findit/common/deps_parser.py
index b68255c2ac5b42a67569516dfc55ef9e95a3a3d9..b2b80b5639bd864814a9cfa7c176ac9f322b563b 100644
--- a/appengine/findit/common/deps_parser.py
+++ b/appengine/findit/common/deps_parser.py
@@ -166,7 +166,7 @@ def UpdateDependencyTree(root_dep, target_os_list, deps_loader):
target_os_list = [_NormalizeTargetOSName(name) for name in target_os_list]
deps_content = deps_loader.Load(
- root_dep.repo_url, root_dep.revision, root_dep.deps_file)
+ root_dep.deps_repo_url, root_dep.deps_repo_revision, root_dep.deps_file)
deps, deps_os = ParseDEPSContent(deps_content, keys=('deps', 'deps_os'))
all_deps = MergeWithOsDeps(deps, deps_os, target_os_list)
« no previous file with comments | « appengine/findit/common/dependency.py ('k') | appengine/findit/common/http_client_appengine.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698