summaryrefslogtreecommitdiffstats
path: root/tools/auto_bisect
diff options
context:
space:
mode:
authorprasadv <prasadv@chromium.org>2014-10-10 14:32:33 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-10 21:33:18 +0000
commit68593e0bd3d3ca1301ee3a0a2dc3f615ad5e369d (patch)
treed0e33cdf406806dd5fbc444a1e6895a1c1fa0003 /tools/auto_bisect
parent4db467daa7be87ab05a7c2d6462ca9b87b537a2f (diff)
downloadchromium_src-68593e0bd3d3ca1301ee3a0a2dc3f615ad5e369d.zip
chromium_src-68593e0bd3d3ca1301ee3a0a2dc3f615ad5e369d.tar.gz
chromium_src-68593e0bd3d3ca1301ee3a0a2dc3f615ad5e369d.tar.bz2
Use new gclient config to pull V8 bleeding edge revisions.
BUG=422386 NOTRY=true Review URL: https://codereview.chromium.org/648783002 Cr-Commit-Position: refs/heads/master@{#299190}
Diffstat (limited to 'tools/auto_bisect')
-rw-r--r--tools/auto_bisect/bisect_utils.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/auto_bisect/bisect_utils.py b/tools/auto_bisect/bisect_utils.py
index 59bbce9..da8b04b 100644
--- a/tools/auto_bisect/bisect_utils.py
+++ b/tools/auto_bisect/bisect_utils.py
@@ -60,7 +60,9 @@ GCLIENT_SPEC_DATA = [
},
]
GCLIENT_SPEC_ANDROID = "\ntarget_os = ['android']"
-GCLIENT_CUSTOM_DEPS_V8 = {'src/v8_bleeding_edge': 'git://github.com/v8/v8.git'}
+GCLIENT_CUSTOM_DEPS_V8 = {
+ 'src/v8_bleeding_edge': 'https://chromium.googlesource.com/v8/v8.git'
+}
FILE_DEPS_GIT = '.DEPS.git'
FILE_DEPS = 'DEPS'