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

Unified Diff: gclient.py

Issue 498023002: Don't remove "'deps_file': '.DEPS.git'" for chromium/src (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient.py
diff --git a/gclient.py b/gclient.py
index fb9775945bc53aacc13eaf89d35bf0c31e6271f1..42fa55066ba57fd3243b2f9682a539eadfb1cf8b 100755
--- a/gclient.py
+++ b/gclient.py
@@ -1290,19 +1290,6 @@ http://www.chromium.org/developers/how-tos/get-the-code
url_val.s = CHROMIUM_SRC_URL
modified = True
- # Check for obsolete deps_file
- if url_val.s == CHROMIUM_SRC_URL:
- deps_file_idx = ast_dict_index(solution, 'deps_file')
- if deps_file_idx == -1:
- continue
- deps_file_val = solution.values[deps_file_idx]
- if type(deps_file_val) is not ast.Str:
- continue
- if deps_file_val.s == '.DEPS.git':
- solution.keys[deps_file_idx:deps_file_idx + 1] = []
- solution.values[deps_file_idx:deps_file_idx + 1] = []
- modified = True
-
if not modified:
return self
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698