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

Side by Side Diff: scripts/slave/recipe_modules/auto_bisect/depot_config.py

Issue 1829583002: Enabling descent into catapult rolls. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@hax
Patch Set: Updating expectations, rebasing. Created 4 years, 8 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 | scripts/slave/recipe_modules/auto_bisect/example.expected/android_arm64_bisector.json » ('j') | 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 DEPS_GIT_FILENAME = '.DEPS.git' 5 DEPS_GIT_FILENAME = '.DEPS.git'
6 6
7 DEPS_FILENAME = 'DEPS' 7 DEPS_FILENAME = 'DEPS'
8 8
9 GCLIENT_CUSTOM_DEPS_V8 = { 9 GCLIENT_CUSTOM_DEPS_V8 = {
10 'src/v8_bleeding_edge': 'https://chromium.googlesource.com/v8/v8.git' 10 'src/v8_bleeding_edge': 'https://chromium.googlesource.com/v8/v8.git'
(...skipping 23 matching lines...) Expand all
34 'custom_deps': GCLIENT_CUSTOM_DEPS_V8, 34 'custom_deps': GCLIENT_CUSTOM_DEPS_V8,
35 'url': 'https://chromium.googlesource.com/v8/v8.git', 35 'url': 'https://chromium.googlesource.com/v8/v8.git',
36 'deps_var': 'v8_revision' 36 'deps_var': 'v8_revision'
37 }, 37 },
38 'skia': { 38 'skia': {
39 'src': 'src/third_party/skia', 39 'src': 'src/third_party/skia',
40 'recurse': True, 40 'recurse': True,
41 'from': ['chromium'], 41 'from': ['chromium'],
42 'url': 'https://chromium.googlesource.com/skia', 42 'url': 'https://chromium.googlesource.com/skia',
43 'deps_var': 'skia_revision' 43 'deps_var': 'skia_revision'
44 },
45 'catapult': {
46 'src': 'src/third_party/catapult',
47 'recurse': True,
48 'from': ['chromium'],
49 'url':'https://github.com/catapult-project/catapult.git',
50 'deps_var': 'catapult_revision'
44 } 51 }
45 } 52 }
46 53
47 def add_addition_depot_into(depot_info): 54 def add_addition_depot_into(depot_info):
48 global DEPOT_DEPS_NAME 55 global DEPOT_DEPS_NAME
49 DEPOT_DEPS_NAME = dict(DEPOT_DEPS_NAME.items() + 56 DEPOT_DEPS_NAME = dict(DEPOT_DEPS_NAME.items() +
50 depot_info.items()) # pragma: no cover 57 depot_info.items()) # pragma: no cover
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/auto_bisect/example.expected/android_arm64_bisector.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698