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

Side by Side Diff: DEPS

Issue 2663063005: Revert of [wasm] include JS conformance tests in Wasm mjsunit tests (Closed)
Patch Set: Created 3 years, 10 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') | test/mjsunit/mjsunit.isolate » ('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 "chromium_url": "https://chromium.googlesource.com", 6 "chromium_url": "https://chromium.googlesource.com",
7 } 7 }
8 8
9 deps = { 9 deps = {
10 "v8/build": 10 "v8/build":
(...skipping 22 matching lines...) Expand all
33 Var("chromium_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188 267b4560491ff9155c5ee13e207ecd65f", 33 Var("chromium_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188 267b4560491ff9155c5ee13e207ecd65f",
34 "v8/test/mozilla/data": 34 "v8/test/mozilla/data":
35 Var("chromium_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c5 78a10ea707b1a8ab0b88943fe5115ce2b9be", 35 Var("chromium_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c5 78a10ea707b1a8ab0b88943fe5115ce2b9be",
36 "v8/test/simdjs/data": Var("chromium_url") + "/external/github.com/tc39/ecmasc ript_simd.git" + "@" + "baf493985cb9ea7cdbd0d68704860a8156de9556", 36 "v8/test/simdjs/data": Var("chromium_url") + "/external/github.com/tc39/ecmasc ript_simd.git" + "@" + "baf493985cb9ea7cdbd0d68704860a8156de9556",
37 "v8/test/test262/data": 37 "v8/test/test262/data":
38 Var("chromium_url") + "/external/github.com/tc39/test262.git" + "@" + "6a0f1 189eb00d38ef9760cb65cbc41c066876cde", 38 Var("chromium_url") + "/external/github.com/tc39/test262.git" + "@" + "6a0f1 189eb00d38ef9760cb65cbc41c066876cde",
39 "v8/test/test262/harness": 39 "v8/test/test262/harness":
40 Var("chromium_url") + "/external/github.com/test262-utils/test262-harness-py .git" + "@" + "0f2acdd882c84cff43b9d60df7574a1901e2cdcd", 40 Var("chromium_url") + "/external/github.com/test262-utils/test262-harness-py .git" + "@" + "0f2acdd882c84cff43b9d60df7574a1901e2cdcd",
41 "v8/tools/clang": 41 "v8/tools/clang":
42 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "960cc3ec8c679 adad9b6f9019f737c8cd9ad0a75", 42 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "960cc3ec8c679 adad9b6f9019f737c8cd9ad0a75",
43 # TODO(eholk): once the Wasm JS API Conformance Suite is finalized, mirror it in
44 # a chromium repo like the other deps.
45 "v8/test/wasm-js":
46 "https://github.com/bnjbvr/wasm-spec.git" + "@" + "190bd270e148a532082f6eb1b 97dea5302800485",
47 } 43 }
48 44
49 deps_os = { 45 deps_os = {
50 "android": { 46 "android": {
51 "v8/third_party/android_tools": 47 "v8/third_party/android_tools":
52 Var("chromium_url") + "/android_tools.git" + "@" + "b43a6a289a7588b1769814 f04dd6c7d7176974cc", 48 Var("chromium_url") + "/android_tools.git" + "@" + "b43a6a289a7588b1769814 f04dd6c7d7176974cc",
53 "v8/third_party/catapult": 49 "v8/third_party/catapult":
54 Var('chromium_url') + "/external/github.com/catapult-project/catapult.git" + "@" + "986b4e8b58804b7aa7bec4479b10087607ba9548", 50 Var('chromium_url') + "/external/github.com/catapult-project/catapult.git" + "@" + "986b4e8b58804b7aa7bec4479b10087607ba9548",
55 }, 51 },
56 "win": { 52 "win": {
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 'name': 'clang', 289 'name': 'clang',
294 'pattern': '.', 290 'pattern': '.',
295 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 291 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
296 }, 292 },
297 { 293 {
298 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 294 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
299 "pattern": ".", 295 "pattern": ".",
300 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], 296 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"],
301 }, 297 },
302 ] 298 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | test/mjsunit/mjsunit.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698