Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: DEPS

Issue 840003002: Reland 'Move libc++ and libc++abi to buildtools.' (Closed) Base URL: https://chromium.googlesource.com/chromium/buildtools/@master
Patch Set: Review Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | third_party/libc++/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
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 "third_party/libc++/trunk":
20 Var("git_url") + "/chromium/llvm-project/libcxx.git" + "@" +
21 Var("libcxx_revision"),
22 "third_party/libc++abi/trunk":
23 Var("git_url") + "/chromium/llvm-project/libcxxabi.git" + "@" +
24 Var("libcxxabi_revision"),
17 } 25 }
OLDNEW
« no previous file with comments | « .gitignore ('k') | third_party/libc++/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698