| 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" + "@" + "4ec6c4e3a94bd04a6da2858163d40b
2429b8aad1", | 11 Var("git_url") + "/external/gyp.git" + "@" + "4ec6c4e3a94bd04a6da2858163d40b
2429b8aad1", |
| 12 "v8/third_party/icu": | 12 "v8/third_party/icu": |
| 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "628d39f5b088236d2021bf438
8549fd92673ff1a", | 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "c291cde264469b20ca969ce88
32088acb21e0c48", |
| 14 "v8/buildtools": | 14 "v8/buildtools": |
| 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "80b5126f91be4eb359248d2
8696746ef09d5be67", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "80b5126f91be4eb359248d2
8696746ef09d5be67", |
| 16 "v8/base/trace_event/common": | 16 "v8/base/trace_event/common": |
| 17 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "c8c866
5c2deaf1cc749d9f8e153256d4f67bf1b8", | 17 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "c8c866
5c2deaf1cc749d9f8e153256d4f67bf1b8", |
| 18 "v8/tools/swarming_client": | 18 "v8/tools/swarming_client": |
| 19 Var('git_url') + '/external/swarming.client.git' + '@' + "df6e95e7669883c8fe
9ef956c69a544154701a49", | 19 Var('git_url') + '/external/swarming.client.git' + '@' + "df6e95e7669883c8fe
9ef956c69a544154701a49", |
| 20 "v8/testing/gtest": | 20 "v8/testing/gtest": |
| 21 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
6431cb592dad629028a50b3dd418a408c87", | 21 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
6431cb592dad629028a50b3dd418a408c87", |
| 22 "v8/testing/gmock": | 22 "v8/testing/gmock": |
| 23 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", | 23 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
332ce19a33faf75be", |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 'name': 'clang', | 216 'name': 'clang', |
| 217 'pattern': '.', | 217 'pattern': '.', |
| 218 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 218 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 219 }, | 219 }, |
| 220 { | 220 { |
| 221 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 221 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 222 "pattern": ".", | 222 "pattern": ".", |
| 223 "action": ["python", "v8/build/gyp_v8"], | 223 "action": ["python", "v8/build/gyp_v8"], |
| 224 }, | 224 }, |
| 225 ] | 225 ] |
| OLD | NEW |