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

Side by Side Diff: scripts/slave/recipe_modules/auto_bisect/resources/depot_map.py

Issue 2365973004: Add catapult to the list of supported repos for fetch_revision_info.py (Closed)
Patch Set: Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """This module contains a mapping of depot names to paths on gitiles. 5 """This module contains a mapping of depot names to paths on gitiles.
6 6
7 This is used to fetch information from gitiles for different 7 This is used to fetch information from gitiles for different
8 repositories supported by auto-bisect. 8 repositories supported by auto-bisect.
9 """ 9 """
10 10
11 # For each entry in this map, the key is a "depot" name (a Chromium dependency 11 # For each entry in this map, the key is a "depot" name (a Chromium dependency
12 # in the DEPS file) and the value is a path used for the repo on gitiles; each 12 # in the DEPS file) and the value is a path used for the repo on gitiles; each
13 # repo can be found at https://chromium.googlesource.com/<PATH>. 13 # repo can be found at https://chromium.googlesource.com/<PATH>.
14 DEPOT_PATH_MAP = { 14 DEPOT_PATH_MAP = {
15 'chromium': 'chromium/src', 15 'chromium': 'chromium/src',
16 'angle': 'angle/angle', 16 'angle': 'angle/angle',
17 'v8': 'v8/v8.git', 17 'v8': 'v8/v8.git',
18 'skia': 'skia', 18 'skia': 'skia',
19 'catapult': 'external/github.com/catapult-project/catapult',
19 } 20 }
OLDNEW
« 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