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

Side by Side Diff: DEPS

Issue 1616263006: roll clang-format 242086:r258123 (Closed) Base URL: https://chromium.googlesource.com/chromium/buildtools.git@master
Patch Set: Created 4 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 | « no previous file | clang_format/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 recursion = 1 1 recursion = 1
2 use_relative_paths = True 2 use_relative_paths = True
3 3
4 vars = { 4 vars = {
5 "git_url": "https://chromium.googlesource.com", 5 "git_url": "https://chromium.googlesource.com",
6 6
7 "clang_format_rev": "81edd558fea5dd7855d67a1dc61db34ae8c1fd63", # r223685 7 "clang_format_rev": "a72164df8be7d1c68ae1ad6c3541e7819200327e", # r258123
8 "libcxx_revision": "aad34a13af010898f54c1bb2069194cb083cea4b", 8 "libcxx_revision": "aad34a13af010898f54c1bb2069194cb083cea4b",
9 "libcxxabi_revision": "9a39e428d018b723d7d187181fd08908b1cb6bd0", 9 "libcxxabi_revision": "9a39e428d018b723d7d187181fd08908b1cb6bd0",
10 } 10 }
11 11
12 deps = { 12 deps = {
13 "clang_format/script": 13 "clang_format/script":
14 Var("git_url") + "/chromium/llvm-project/cfe/tools/clang-format.git@" + 14 Var("git_url") + "/chromium/llvm-project/cfe/tools/clang-format.git@" +
15 Var("clang_format_rev"), 15 Var("clang_format_rev"),
16 "third_party/libc++/trunk": 16 "third_party/libc++/trunk":
17 Var("git_url") + "/chromium/llvm-project/libcxx.git" + "@" + 17 Var("git_url") + "/chromium/llvm-project/libcxx.git" + "@" +
18 Var("libcxx_revision"), 18 Var("libcxx_revision"),
19 "third_party/libc++abi/trunk": 19 "third_party/libc++abi/trunk":
20 Var("git_url") + "/chromium/llvm-project/libcxxabi.git" + "@" + 20 Var("git_url") + "/chromium/llvm-project/libcxxabi.git" + "@" +
21 Var("libcxxabi_revision"), 21 Var("libcxxabi_revision"),
22 } 22 }
OLDNEW
« no previous file with comments | « no previous file | clang_format/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698