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

Side by Side Diff: DEPS

Issue 2946073002: Fix libc++ ARM build (Closed)
Patch Set: Condition on is_linux too Created 3 years, 6 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++/BUILD.gn » ('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": "0653eee0c81ea04715c635dd0885e8096ff6ba6d", # r302580 6 "clang_format_rev": "0653eee0c81ea04715c635dd0885e8096ff6ba6d", # r302580
7 "libcxx_revision": "3a07dd740be63878167a0ea19fe81869954badd7", # r303878 7 "libcxx_revision": "3a07dd740be63878167a0ea19fe81869954badd7", # r303878
8 "libcxxabi_revision": "4072e8fd76febee37f60aeda76d6d9f5e3791daa", # r303806 8 "libcxxabi_revision": "4072e8fd76febee37f60aeda76d6d9f5e3791daa", # r303806
9 "libunwind_revision": "86219d8c6a73f95e694b4e1594e1a8a0a33613b6", # r303130
9 } 10 }
10 11
11 deps = { 12 deps = {
12 "clang_format/script": 13 "clang_format/script":
13 Var("chromium_url") + "/chromium/llvm-project/cfe/tools/clang-format.git@" + 14 Var("chromium_url") + "/chromium/llvm-project/cfe/tools/clang-format.git@" +
14 Var("clang_format_rev"), 15 Var("clang_format_rev"),
15 "third_party/libc++/trunk": 16 "third_party/libc++/trunk":
16 Var("chromium_url") + "/chromium/llvm-project/libcxx.git" + "@" + 17 Var("chromium_url") + "/chromium/llvm-project/libcxx.git" + "@" +
17 Var("libcxx_revision"), 18 Var("libcxx_revision"),
18 "third_party/libc++abi/trunk": 19 "third_party/libc++abi/trunk":
19 Var("chromium_url") + "/chromium/llvm-project/libcxxabi.git" + "@" + 20 Var("chromium_url") + "/chromium/llvm-project/libcxxabi.git" + "@" +
20 Var("libcxxabi_revision"), 21 Var("libcxxabi_revision"),
22 "third_party/libunwind/trunk":
23 Var("chromium_url") + "/external/llvm.org/libunwind.git" + "@" +
24 Var("libunwind_revision"),
21 } 25 }
OLDNEW
« no previous file with comments | « .gitignore ('k') | third_party/libc++/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698