Chromium Code Reviews| Index: scripts/slave/recipe_modules/auto_bisect/depot_config.py |
| diff --git a/scripts/slave/recipe_modules/auto_bisect/depot_config.py b/scripts/slave/recipe_modules/auto_bisect/depot_config.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..42e94585ca05c1aec97cc6878606bdd985386e18 |
| --- /dev/null |
| +++ b/scripts/slave/recipe_modules/auto_bisect/depot_config.py |
| @@ -0,0 +1,60 @@ |
| +# 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. |
| + |
| +FILE_DEPS_GIT = '.DEPS.git' |
| + |
| +FILE_DEPS = 'DEPS' |
|
qyearsley
2015/02/22 20:37:55
Possible alternative names: DEPS_GIT_FILENAME, DEP
RobertoCN
2015/02/24 20:01:14
Done.
|
| + |
| +GCLIENT_CUSTOM_DEPS_V8 = { |
| + 'src/v8_bleeding_edge': 'https://chromium.googlesource.com/v8/v8.git' |
| +} |
| + |
| +DEPOT_DEPS_NAME = { |
|
qyearsley
2015/02/22 20:37:55
Optional: describe the purpose of this dict.
Also
RobertoCN
2015/02/24 20:01:14
Acknowledged.
This is a copy-pasted version of th
|
| + 'chromium': { |
| + 'src': 'src', |
| + 'recurse': True, |
| + 'from': ['android-chrome'], |
| + 'viewvc': 'https://chromium.googlesource.com/chromium/src/+/', |
| + 'deps_var': 'chromium_rev' |
| + }, |
| + 'webkit': { |
| + 'src': 'src/third_party/WebKit', |
| + 'recurse': True, |
| + 'from': ['chromium'], |
| + 'viewvc': 'https://chromium.googlesource.com/chromium/blink/+/', |
| + 'deps_var': 'webkit_revision' |
| + }, |
| + 'angle': { |
| + 'src': 'src/third_party/angle', |
| + 'src_old': 'src/third_party/angle_dx11', |
| + 'recurse': True, |
| + 'from': ['chromium'], |
| + 'platform': 'nt', |
| + 'viewvc': 'https://chromium.googlesource.com/angle/angle/+/', |
| + 'deps_var': 'angle_revision' |
| + }, |
| + 'v8': { |
| + 'src': 'src/v8', |
| + 'recurse': True, |
| + 'from': ['chromium'], |
| + 'custom_deps': GCLIENT_CUSTOM_DEPS_V8, |
| + 'viewvc': 'https://chromium.googlesource.com/v8/v8.git/+/', |
| + 'deps_var': 'v8_revision' |
| + }, |
| + 'v8_bleeding_edge': { |
| + 'src': 'src/v8_bleeding_edge', |
| + 'recurse': True, |
| + 'svn': 'https://v8.googlecode.com/svn/branches/bleeding_edge', |
| + 'from': ['v8'], |
| + 'viewvc': 'https://chromium.googlesource.com/v8/v8.git/+/', |
| + 'deps_var': 'v8_revision' |
| + }, |
| + 'skia/src': { |
| + 'src': 'src/third_party/skia/src', |
| + 'recurse': True, |
| + 'from': ['chromium'], |
| + 'viewvc': 'https://chromium.googlesource.com/skia/+/', |
| + 'deps_var': 'skia_revision' |
| + } |
| +} |