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

Side by Side Diff: DEPS

Issue 1294543006: Allowing optional build of a WASM prototype behind a gyp define. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: merge Created 5 years, 4 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 | build/features.gypi » ('j') | no next file with comments »
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" + "@" + "6ee91ad8659871916f9aa840d42e15 13befdf638", 11 Var("git_url") + "/external/gyp.git" + "@" + "6ee91ad8659871916f9aa840d42e15 13befdf638",
12 "v8/third_party/icu": 12 "v8/third_party/icu":
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "89dcdec16381883782b9cc9cf f38e00f047a0f46", 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "89dcdec16381883782b9cc9cf f38e00f047a0f46",
14 # Will change to chromium mirror of WebAssembly before landing.
15 "v8/third_party/wasm":
Michael Starzinger 2015/08/18 14:20:40 Can we for now not pull this dependency? People wo
bradn 2015/08/18 14:42:44 Yep, make sense. Done.
16 "https://github.com/flagxor/v8-native-prototype.git"+ "@" + "7f2d64a953786e2 5e6466c0dc9641e72e46289f6",
14 "v8/buildtools": 17 "v8/buildtools":
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "565d04e8741429fb1b4f26d 102f2c6c3b849edeb", 18 Var("git_url") + "/chromium/buildtools.git" + "@" + "565d04e8741429fb1b4f26d 102f2c6c3b849edeb",
16 "v8/testing/gtest": 19 "v8/testing/gtest":
17 Var("git_url") + "/external/googletest.git" + "@" + "9855a87157778d39b95eccf b201a9dc90f6d61c6", 20 Var("git_url") + "/external/googletest.git" + "@" + "9855a87157778d39b95eccf b201a9dc90f6d61c6",
18 "v8/testing/gmock": 21 "v8/testing/gmock":
19 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c 332ce19a33faf75be", 22 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c 332ce19a33faf75be",
20 "v8/tools/clang": 23 "v8/tools/clang":
21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "5b12e334ec0e571a8e 1f68d028dc5427b58c17ec", 24 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "5b12e334ec0e571a8e 1f68d028dc5427b58c17ec",
22 } 25 }
23 26
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 'name': 'clang', 111 'name': 'clang',
109 'pattern': '.', 112 'pattern': '.',
110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 113 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
111 }, 114 },
112 { 115 {
113 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 116 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
114 "pattern": ".", 117 "pattern": ".",
115 "action": ["python", "v8/build/gyp_v8"], 118 "action": ["python", "v8/build/gyp_v8"],
116 }, 119 },
117 ] 120 ]
OLDNEW
« no previous file with comments | « no previous file | build/features.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698