OLD | NEW |
---|---|
1 # The files DEPS and .DEPS.git need to be manually kept in sync. Depending on | 1 # The files DEPS and .DEPS.git need to be manually kept in sync. Depending on |
2 # whether buildtools is used from a svn or git project one or the other is used. | 2 # whether buildtools is used from a svn or git project one or the other is used. |
3 | 3 |
4 recursion = 1 | 4 recursion = 1 |
5 use_relative_paths = True | 5 use_relative_paths = True |
6 | 6 |
7 vars = { | 7 vars = { |
8 "git_url": "https://chromium.googlesource.com", | 8 "git_url": "https://chromium.googlesource.com", |
earthdok
2014/12/19 17:42:06
the comment in this file says:
"The files DEPS an
| |
9 | 9 |
10 "clang_format_rev": "81edd558fea5dd7855d67a1dc61db34ae8c1fd63", # r223685 | 10 "clang_format_rev": "81edd558fea5dd7855d67a1dc61db34ae8c1fd63", # r223685 |
11 "libcxx_revision": "48198f9110397fff47fe7c37cbfa296be7d44d3d", | |
12 "libcxxabi_revision": "4ad1009ab3a59fa7a6896d74d5e4de5885697f95", | |
11 } | 13 } |
12 | 14 |
13 deps = { | 15 deps = { |
14 "clang_format/script": | 16 "clang_format/script": |
15 Var("git_url") + "/chromium/llvm-project/cfe/tools/clang-format.git@" + | 17 Var("git_url") + "/chromium/llvm-project/cfe/tools/clang-format.git@" + |
16 Var("clang_format_rev"), | 18 Var("clang_format_rev"), |
19 "libc++/trunk": | |
20 Var("git_url") + "/chromium/llvm-project/libcxx.git" + "@" + | |
21 Var("libcxx_revision"), | |
22 "libc++abi/trunk": | |
23 Var("git_url") + "/chromium/llvm-project/libcxxabi.git" + "@" + | |
24 Var("libcxxabi_revision"), | |
17 } | 25 } |
OLD | NEW |