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

Unified Diff: experimental/bisect_lib/depot_map.py

Issue 1521503002: Update bisect_lib with the changes committed in the infra/build repo. (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: In README: add back license header, add link to Telemetry docs in catapult Created 5 years 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: experimental/bisect_lib/depot_map.py
diff --git a/experimental/bisect_lib/depot_map.py b/experimental/bisect_lib/depot_map.py
new file mode 100644
index 0000000000000000000000000000000000000000..e514da8bc915bc27a93e6530bb42e977accde864
--- /dev/null
+++ b/experimental/bisect_lib/depot_map.py
@@ -0,0 +1,19 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""This module contains a mapping of depot names to paths on gitiles.
+
+This is used to fetch information from gitiles for different
+repositories supported by auto-bisect.
+"""
+
+# For each entry in this map, the key is a "depot" name (a Chromium dependency
+# in the DEPS file) and the value is a path used for the repo on gitiles; each
+# repo can be found at https://chromium.googlesource.com/<PATH>.
+DEPOT_PATH_MAP = {
+ 'chromium': 'chromium/src',
+ 'angle': 'angle/angle',
+ 'v8': 'v8/v8.git',
+ 'skia': 'skia',
+}
« no previous file with comments | « experimental/bisect_lib/chromium_revisions_test.py ('k') | experimental/bisect_lib/fetch_intervening_revisions.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698