OLD | NEW |
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" + "@" + "5122240c5e5c4d8da12c543d82b03d
6089eb77c5", | 11 Var("git_url") + "/external/gyp.git" + "@" + "5122240c5e5c4d8da12c543d82b03d
6089eb77c5", |
12 "v8/third_party/icu": | 12 "v8/third_party/icu": |
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "508e9274baaa5caa8de9cf4c2
6a24e926a15ccf0", | 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "508e9274baaa5caa8de9cf4c2
6a24e926a15ccf0", |
14 "v8/buildtools": | 14 "v8/buildtools": |
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "f0b8022601cf9c3c1a2f7ef
cea48e2fe81d3b143", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "565d04e8741429fb1b4f26d
102f2c6c3b849edeb", |
16 "v8/testing/gtest": | 16 "v8/testing/gtest": |
17 Var("git_url") + "/external/googletest.git" + "@" + "9855a87157778d39b95eccf
b201a9dc90f6d61c6", | 17 Var("git_url") + "/external/googletest.git" + "@" + "9855a87157778d39b95eccf
b201a9dc90f6d61c6", |
18 "v8/testing/gmock": | 18 "v8/testing/gmock": |
19 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", | 19 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", |
20 "v8/tools/clang": | 20 "v8/tools/clang": |
21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "86b91f8203d8b6cb2d
abb8a9c5f2dd95135b4307", | 21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "86b91f8203d8b6cb2d
abb8a9c5f2dd95135b4307", |
22 } | 22 } |
23 | 23 |
24 deps_os = { | 24 deps_os = { |
25 "android": { | 25 "android": { |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 'name': 'clang', | 108 'name': 'clang', |
109 'pattern': '.', | 109 'pattern': '.', |
110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
111 }, | 111 }, |
112 { | 112 { |
113 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 113 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
114 "pattern": ".", | 114 "pattern": ".", |
115 "action": ["python", "v8/build/gyp_v8"], | 115 "action": ["python", "v8/build/gyp_v8"], |
116 }, | 116 }, |
117 ] | 117 ] |
OLD | NEW |