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

Side by Side Diff: DEPS

Issue 802583003: [test] Make msan work for v8 stand-alone. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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 | build/standalone.gypi » ('j') | build/standalone.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Note: The buildbots evaluate this file with CWD set to the parent 1 # Note: The buildbots evaluate this file with CWD set to the parent
2 # directory and assume that the root of the checkout is in ./v8/, so 2 # directory and assume that the root of the checkout is in ./v8/, so
3 # all paths in here must match this assumption. 3 # all paths in here must match this assumption.
4 4
5 vars = { 5 vars = {
6 "git_url": "https://chromium.googlesource.com", 6 "git_url": "https://chromium.googlesource.com",
7 } 7 }
8 8
9 deps = { 9 deps = {
10 "v8/build/gyp": 10 "v8/build/gyp":
11 Var("git_url") + "/external/gyp.git" + "@" + "fe00999dfaee449d3465a931677843 4884da4fa7", # from svn revision 2010 11 Var("git_url") + "/external/gyp.git" + "@" + "fe00999dfaee449d3465a931677843 4884da4fa7", # from svn revision 2010
12 "v8/third_party/icu": 12 "v8/third_party/icu":
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "51c1a4ce5f362676aa1f1cfdb 5b7e52edabfa5aa", 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "51c1a4ce5f362676aa1f1cfdb 5b7e52edabfa5aa",
14 "v8/buildtools": 14 "v8/buildtools":
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "4995faa4a7ad968f1fa1917 c26edd5cea295582f", 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "4995faa4a7ad968f1fa1917 c26edd5cea295582f",
16 "v8/testing/gtest": 16 "v8/testing/gtest":
17 Var("git_url") + "/external/googletest.git" + "@" + "8245545b6dc9c4703e6496d 1efd19e975ad2b038", # from svn revision 700 17 Var("git_url") + "/external/googletest.git" + "@" + "8245545b6dc9c4703e6496d 1efd19e975ad2b038", # from svn revision 700
18 "v8/testing/gmock": 18 "v8/testing/gmock":
19 Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f2456529997 6b936d1265cb6a271", # from svn revision 501 19 Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f2456529997 6b936d1265cb6a271", # from svn revision 501
20 "v8/third_party/libc++/trunk":
21 Var("git_url") + "/chromium/llvm-project/libcxx.git" + "@" + "48198f9110397 fff47fe7c37cbfa296be7d44d3d",
22 "v8/third_party/libc++abi/trunk":
23 Var("git_url") + "/chromium/llvm-project/libcxxabi.git" + "@" + "4ad1009ab3 a59fa7a6896d74d5e4de5885697f95",
20 "v8/tools/clang": 24 "v8/tools/clang":
21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "90fb65e7a9a5c9d6d9 613dfb0e78921c52ca9cfc", 25 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "90fb65e7a9a5c9d6d9 613dfb0e78921c52ca9cfc",
22 } 26 }
23 27
24 deps_os = { 28 deps_os = {
25 "android": { 29 "android": {
26 "v8/third_party/android_tools": 30 "v8/third_party/android_tools":
27 Var("git_url") + "/android_tools.git" + "@" + "4f723e2a5fa5b7b8a198072ac19 b92344be2b271", 31 Var("git_url") + "/android_tools.git" + "@" + "4f723e2a5fa5b7b8a198072ac19 b92344be2b271",
28 }, 32 },
29 "win": { 33 "win": {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'name': 'clang', 90 'name': 'clang',
87 'pattern': '.', 91 'pattern': '.',
88 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 92 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
89 }, 93 },
90 { 94 {
91 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 95 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
92 "pattern": ".", 96 "pattern": ".",
93 "action": ["python", "v8/build/gyp_v8"], 97 "action": ["python", "v8/build/gyp_v8"],
94 }, 98 },
95 ] 99 ]
OLDNEW
« no previous file with comments | « no previous file | build/standalone.gypi » ('j') | build/standalone.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698