| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |