| 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 14 matching lines...) Expand all Loading... |
| 25 'from': ['chromium'], | 25 'from': ['chromium'], |
| 26 'platform': 'win', | 26 'platform': 'win', |
| 27 'url': 'https://chromium.googlesource.com/angle/angle', | 27 'url': 'https://chromium.googlesource.com/angle/angle', |
| 28 'deps_var': 'angle_revision' | 28 'deps_var': 'angle_revision' |
| 29 }, | 29 }, |
| 30 'v8': { | 30 'v8': { |
| 31 'src': 'src/v8', | 31 'src': 'src/v8', |
| 32 'recurse': True, | 32 'recurse': True, |
| 33 'from': ['chromium'], | 33 'from': ['chromium'], |
| 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', |
| 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 }, | 44 }, |
| 45 'catapult': { | 45 'catapult': { |
| 46 'src': 'src/third_party/catapult', | 46 'src': 'src/third_party/catapult', |
| 47 'recurse': True, | 47 'recurse': True, |
| 48 'from': ['chromium'], | 48 'from': ['chromium'], |
| 49 'url':'https://github.com/catapult-project/catapult.git', | 49 'url': 'https://chromium.googlesource.com/' |
| 50 'external/github.com/catapult-project/catapult', |
| 50 'deps_var': 'catapult_revision' | 51 'deps_var': 'catapult_revision' |
| 51 } | 52 } |
| 52 } | 53 } |
| 53 | 54 |
| 54 def add_addition_depot_into(depot_info): | 55 def add_addition_depot_into(depot_info): |
| 55 global DEPOT_DEPS_NAME | 56 global DEPOT_DEPS_NAME |
| 56 DEPOT_DEPS_NAME = dict(DEPOT_DEPS_NAME.items() + | 57 DEPOT_DEPS_NAME = dict(DEPOT_DEPS_NAME.items() + |
| 57 depot_info.items()) # pragma: no cover | 58 depot_info.items()) # pragma: no cover |
| OLD | NEW |