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

Side by Side Diff: DEPS

Issue 2435783002: test262 roll (Closed)
Patch Set: Change gyp file Created 4 years, 2 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 | test/test262/list.py » ('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 19 matching lines...) Expand all
30 "v8/testing/gtest": 30 "v8/testing/gtest":
31 Var("chromium_url") + "/external/github.com/google/googletest.git" + "@" + " 6f8a66431cb592dad629028a50b3dd418a408c87", 31 Var("chromium_url") + "/external/github.com/google/googletest.git" + "@" + " 6f8a66431cb592dad629028a50b3dd418a408c87",
32 "v8/testing/gmock": 32 "v8/testing/gmock":
33 Var("chromium_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e1 02c9c332ce19a33faf75be", 33 Var("chromium_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e1 02c9c332ce19a33faf75be",
34 "v8/test/benchmarks/data": 34 "v8/test/benchmarks/data":
35 Var("chromium_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188 267b4560491ff9155c5ee13e207ecd65f", 35 Var("chromium_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188 267b4560491ff9155c5ee13e207ecd65f",
36 "v8/test/mozilla/data": 36 "v8/test/mozilla/data":
37 Var("chromium_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c5 78a10ea707b1a8ab0b88943fe5115ce2b9be", 37 Var("chromium_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c5 78a10ea707b1a8ab0b88943fe5115ce2b9be",
38 "v8/test/simdjs/data": Var("chromium_url") + "/external/github.com/tc39/ecmasc ript_simd.git" + "@" + "baf493985cb9ea7cdbd0d68704860a8156de9556", 38 "v8/test/simdjs/data": Var("chromium_url") + "/external/github.com/tc39/ecmasc ript_simd.git" + "@" + "baf493985cb9ea7cdbd0d68704860a8156de9556",
39 "v8/test/test262/data": 39 "v8/test/test262/data":
40 Var("chromium_url") + "/external/github.com/tc39/test262.git" + "@" + "29c23 844494a7cc2fbebc6948d2cb0bcaddb24e7", 40 Var("chromium_url") + "/external/github.com/tc39/test262.git" + "@" + "fb61a b44eb1bbc2699d714fc00e33af2a19411ce",
41 "v8/test/test262/harness": 41 "v8/test/test262/harness":
42 Var("chromium_url") + "/external/github.com/test262-utils/test262-harness-py .git" + "@" + "cbd968f54f7a95c6556d53ba852292a4c49d11d8", 42 Var("chromium_url") + "/external/github.com/test262-utils/test262-harness-py .git" + "@" + "cbd968f54f7a95c6556d53ba852292a4c49d11d8",
43 "v8/tools/clang": 43 "v8/tools/clang":
44 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "75350a858c51a d69e2aae051a8727534542da29f", 44 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "75350a858c51a d69e2aae051a8727534542da29f",
45 } 45 }
46 46
47 deps_os = { 47 deps_os = {
48 "android": { 48 "android": {
49 "v8/third_party/android_tools": 49 "v8/third_party/android_tools":
50 Var("chromium_url") + "/android_tools.git" + "@" + "25d57ead05d3dfef26e9c1 9b13ed10b0a69829cf", 50 Var("chromium_url") + "/android_tools.git" + "@" + "25d57ead05d3dfef26e9c1 9b13ed10b0a69829cf",
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 'name': 'clang', 291 'name': 'clang',
292 'pattern': '.', 292 'pattern': '.',
293 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 293 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
294 }, 294 },
295 { 295 {
296 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 296 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
297 "pattern": ".", 297 "pattern": ".",
298 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], 298 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"],
299 }, 299 },
300 ] 300 ]
OLDNEW
« no previous file with comments | « no previous file | test/test262/list.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698