Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 FILE_DEPS_GIT = '.DEPS.git' | |
| 6 | |
| 7 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.
| |
| 8 | |
| 9 GCLIENT_CUSTOM_DEPS_V8 = { | |
| 10 'src/v8_bleeding_edge': 'https://chromium.googlesource.com/v8/v8.git' | |
| 11 } | |
| 12 | |
| 13 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
| |
| 14 'chromium': { | |
| 15 'src': 'src', | |
| 16 'recurse': True, | |
| 17 'from': ['android-chrome'], | |
| 18 'viewvc': 'https://chromium.googlesource.com/chromium/src/+/', | |
| 19 'deps_var': 'chromium_rev' | |
| 20 }, | |
| 21 'webkit': { | |
| 22 'src': 'src/third_party/WebKit', | |
| 23 'recurse': True, | |
| 24 'from': ['chromium'], | |
| 25 'viewvc': 'https://chromium.googlesource.com/chromium/blink/+/', | |
| 26 'deps_var': 'webkit_revision' | |
| 27 }, | |
| 28 'angle': { | |
| 29 'src': 'src/third_party/angle', | |
| 30 'src_old': 'src/third_party/angle_dx11', | |
| 31 'recurse': True, | |
| 32 'from': ['chromium'], | |
| 33 'platform': 'nt', | |
| 34 'viewvc': 'https://chromium.googlesource.com/angle/angle/+/', | |
| 35 'deps_var': 'angle_revision' | |
| 36 }, | |
| 37 'v8': { | |
| 38 'src': 'src/v8', | |
| 39 'recurse': True, | |
| 40 'from': ['chromium'], | |
| 41 'custom_deps': GCLIENT_CUSTOM_DEPS_V8, | |
| 42 'viewvc': 'https://chromium.googlesource.com/v8/v8.git/+/', | |
| 43 'deps_var': 'v8_revision' | |
| 44 }, | |
| 45 'v8_bleeding_edge': { | |
| 46 'src': 'src/v8_bleeding_edge', | |
| 47 'recurse': True, | |
| 48 'svn': 'https://v8.googlecode.com/svn/branches/bleeding_edge', | |
| 49 'from': ['v8'], | |
| 50 'viewvc': 'https://chromium.googlesource.com/v8/v8.git/+/', | |
| 51 'deps_var': 'v8_revision' | |
| 52 }, | |
| 53 'skia/src': { | |
| 54 'src': 'src/third_party/skia/src', | |
| 55 'recurse': True, | |
| 56 'from': ['chromium'], | |
| 57 'viewvc': 'https://chromium.googlesource.com/skia/+/', | |
| 58 'deps_var': 'skia_revision' | |
| 59 } | |
| 60 } | |
| OLD | NEW |