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

Side by Side Diff: DEPS

Issue 2719163003: Update clang-format binaries and scripts for all platforms. (Closed)
Patch Set: Created 3 years, 9 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 use_relative_paths = True 1 use_relative_paths = True
2 2
3 vars = { 3 vars = {
4 "chromium_url": "https://chromium.googlesource.com", 4 "chromium_url": "https://chromium.googlesource.com",
5 5
6 "clang_format_rev": "7e02d2da39a7bf53d9f4c018465cc85f687a31b7", # r296171 6 "clang_format_rev": "c09c8deeac31f05bd801995c475e7c8070f9ecda", # r296408
7 "libcxx_revision": "b1ece9c037d879843b0b0f5a2802e1e9d443b75a", # r256621 7 "libcxx_revision": "b1ece9c037d879843b0b0f5a2802e1e9d443b75a", # r256621
8 "libcxxabi_revision": "0edb61e2e581758fc4cd4cd09fc588b3fc91a653", # r256323 8 "libcxxabi_revision": "0edb61e2e581758fc4cd4cd09fc588b3fc91a653", # r256323
9 } 9 }
10 10
11 deps = { 11 deps = {
12 "clang_format/script": 12 "clang_format/script":
13 Var("chromium_url") + "/chromium/llvm-project/cfe/tools/clang-format.git@" + 13 Var("chromium_url") + "/chromium/llvm-project/cfe/tools/clang-format.git@" +
14 Var("clang_format_rev"), 14 Var("clang_format_rev"),
15 "third_party/libc++/trunk": 15 "third_party/libc++/trunk":
16 Var("chromium_url") + "/chromium/llvm-project/libcxx.git" + "@" + 16 Var("chromium_url") + "/chromium/llvm-project/libcxx.git" + "@" +
17 Var("libcxx_revision"), 17 Var("libcxx_revision"),
18 "third_party/libc++abi/trunk": 18 "third_party/libc++abi/trunk":
19 Var("chromium_url") + "/chromium/llvm-project/libcxxabi.git" + "@" + 19 Var("chromium_url") + "/chromium/llvm-project/libcxxabi.git" + "@" +
20 Var("libcxxabi_revision"), 20 Var("libcxxabi_revision"),
21 } 21 }
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