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

Unified Diff: tools/bisect_utils.py

Issue 146333004: Introduce an intra-priority level sorting value - Chromium Side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes from review. Created 6 years, 10 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: tools/bisect_utils.py
diff --git a/tools/bisect_utils.py b/tools/bisect_utils.py
index c4999ac8eaaf9097c96f9566e6c106a0e711527e..7bb33a31e7367e56398aef6eed1f54881cad4109 100644
--- a/tools/bisect_utils.py
+++ b/tools/bisect_utils.py
@@ -14,7 +14,33 @@ import stat
import subprocess
import sys
-DEFAULT_GCLIENT_CUSTOM_DEPS = {}
+DEFAULT_GCLIENT_CUSTOM_DEPS = {
+ "src/data/page_cycler": "https://chrome-internal.googlesource.com/"
+ "chrome/data/page_cycler/.git",
+ "src/data/dom_perf": "https://chrome-internal.googlesource.com/"
+ "chrome/data/dom_perf/.git",
+ "src/data/mach_ports": "https://chrome-internal.googlesource.com/"
+ "chrome/data/mach_ports/.git",
+ "src/tools/perf/data": "https://chrome-internal.googlesource.com/"
+ "chrome/tools/perf/data/.git",
+ "src/third_party/adobe/flash/binaries/ppapi/linux":
+ "https://chrome-internal.googlesource.com/"
+ "chrome/deps/adobe/flash/binaries/ppapi/linux/.git",
+ "src/third_party/adobe/flash/binaries/ppapi/linux_x64":
+ "https://chrome-internal.googlesource.com/"
+ "chrome/deps/adobe/flash/binaries/ppapi/linux_x64/.git",
+ "src/third_party/adobe/flash/binaries/ppapi/mac":
+ "https://chrome-internal.googlesource.com/"
+ "chrome/deps/adobe/flash/binaries/ppapi/mac/.git",
+ "src/third_party/adobe/flash/binaries/ppapi/mac_64":
+ "https://chrome-internal.googlesource.com/"
+ "chrome/deps/adobe/flash/binaries/ppapi/mac_64/.git",
+ "src/third_party/adobe/flash/binaries/ppapi/win":
+ "https://chrome-internal.googlesource.com/"
+ "chrome/deps/adobe/flash/binaries/ppapi/win/.git",
+ "src/third_party/adobe/flash/binaries/ppapi/win_x64":
+ "https://chrome-internal.googlesource.com/"
+ "chrome/deps/adobe/flash/binaries/ppapi/win_x64/.git",}
GCLIENT_SPEC_DATA = [
{ "name" : "src",

Powered by Google App Engine
This is Rietveld 408576698