| 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..633857c21ba97f4272881acc580d4677b079d3f6
|
| --- /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.
|
| +
|
| +DEPS_GIT_FILENAME = '.DEPS.git'
|
| +
|
| +DEPS_FILENAME = 'DEPS'
|
| +
|
| +GCLIENT_CUSTOM_DEPS_V8 = {
|
| + 'src/v8_bleeding_edge': 'https://chromium.googlesource.com/v8/v8.git'
|
| +}
|
| +
|
| +DEPOT_DEPS_NAME = {
|
| + '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'
|
| + }
|
| +}
|
|
|