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

Unified Diff: tools/roll_webrtc.py

Issue 1160523002: Fix WebRTC roll script. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/roll_webrtc.py
diff --git a/tools/roll_webrtc.py b/tools/roll_webrtc.py
index 136bce5e1fd40708e6ce43eeca9c9a9f5fde3b04..51754e18ea5f5170ae0e86f28d04dc6d129465ec 100755
--- a/tools/roll_webrtc.py
+++ b/tools/roll_webrtc.py
@@ -18,7 +18,7 @@ SRC_DIR = os.path.abspath(os.path.join(SCRIPT_DIR, os.pardir))
import find_depot_tools
find_depot_tools.add_depot_tools_to_path()
import rietveld
-import roll_dep
+import roll_dep_svn
from gclient import GClientKeywords
from third_party import upload
@@ -329,11 +329,11 @@ class AutoRoller(object):
dep_name = os.path.join('src', dep_relative_to_src)
comment = 'commit position %s' % commit_info.commit_position
- # roll_dep.py relies on cwd being the Chromium checkout, so let's
+ # roll_dep_svn.py relies on cwd being the Chromium checkout, so let's
# temporarily change the working directory and then change back.
cwd = os.getcwd()
os.chdir(os.path.dirname(deps_filename))
- roll_dep.update_deps(deps_filename, dep_relative_to_src, dep_name,
+ roll_dep_svn.update_deps(deps_filename, dep_relative_to_src, dep_name,
commit_info.git_commit, comment)
os.chdir(cwd)
« 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