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" + "@" + "01528c7244837168a1c80f06ff60fa
5a9793c824", | 11 Var("git_url") + "/external/gyp.git" + "@" + "01528c7244837168a1c80f06ff60fa
5a9793c824", |
12 "v8/third_party/icu": | 12 "v8/third_party/icu": |
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "6b3ce817f8e828c3b7a577d23
95f0882eb56ef18", | 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "6b3ce817f8e828c3b7a577d23
95f0882eb56ef18", |
14 "v8/buildtools": | 14 "v8/buildtools": |
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "f7310ee61725e68b1c8921e
381830362cf4f0999", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "f7310ee61725e68b1c8921e
381830362cf4f0999", |
| 16 "v8/tools/swarming_client": |
| 17 Var('git_url') + '/external/swarming.client.git' + '@' + "6e5d2b21f0ac98396c
d736097a985346feed1328", |
16 "v8/testing/gtest": | 18 "v8/testing/gtest": |
17 Var("git_url") + "/external/googletest.git" + "@" + "9855a87157778d39b95eccf
b201a9dc90f6d61c6", | 19 Var("git_url") + "/external/googletest.git" + "@" + "9855a87157778d39b95eccf
b201a9dc90f6d61c6", |
18 "v8/testing/gmock": | 20 "v8/testing/gmock": |
19 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", | 21 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", |
20 "v8/tools/clang": | 22 "v8/tools/clang": |
21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "1cde9025c16dfc3e23
be2db010b24f657c255b4c", | 23 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "1cde9025c16dfc3e23
be2db010b24f657c255b4c", |
22 } | 24 } |
23 | 25 |
24 deps_os = { | 26 deps_os = { |
25 "android": { | 27 "android": { |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'name': 'clang', | 117 'name': 'clang', |
116 'pattern': '.', | 118 'pattern': '.', |
117 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 119 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
118 }, | 120 }, |
119 { | 121 { |
120 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 122 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
121 "pattern": ".", | 123 "pattern": ".", |
122 "action": ["python", "v8/build/gyp_v8"], | 124 "action": ["python", "v8/build/gyp_v8"], |
123 }, | 125 }, |
124 ] | 126 ] |
OLD | NEW |