| 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": | 10 "v8/build": |
| 11 Var("git_url") + "/chromium/src/build.git" + "@" + "5240573aa6f46cfee690cdf7
c6d9544e1841f502", | 11 Var("git_url") + "/chromium/src/build.git" + "@" + "5240573aa6f46cfee690cdf7
c6d9544e1841f502", |
| 12 "v8/tools/gyp": | 12 "v8/tools/gyp": |
| 13 Var("git_url") + "/external/gyp.git" + "@" + "e7079f0e0e14108ab0dba58728ff21
9637458563", | 13 Var("git_url") + "/external/gyp.git" + "@" + "e7079f0e0e14108ab0dba58728ff21
9637458563", |
| 14 "v8/third_party/icu": | 14 "v8/third_party/icu": |
| 15 Var("git_url") + "/chromium/deps/icu.git" + "@" + "b5ecbb29a26532f72ef482569
b223d5a51fd50bf", | 15 Var("git_url") + "/chromium/deps/icu.git" + "@" + "b5ecbb29a26532f72ef482569
b223d5a51fd50bf", |
| 16 "v8/third_party/instrumented_libraries": |
| 17 Var("git_url") + "/chromium/src/third_party/instrumented_libraries.git" + "@
" + "7681dc666045cb84d5d2a2abe0969c01bfead993", |
| 16 "v8/buildtools": | 18 "v8/buildtools": |
| 17 Var("git_url") + "/chromium/buildtools.git" + "@" + "67bf0653b2eb9eabd4fc17c
4bf2df828e904a558", | 19 Var("git_url") + "/chromium/buildtools.git" + "@" + "67bf0653b2eb9eabd4fc17c
4bf2df828e904a558", |
| 18 "v8/base/trace_event/common": | 20 "v8/base/trace_event/common": |
| 19 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "315bf1
e2d45be7d53346c31cfcc37424a32c30c8", | 21 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "315bf1
e2d45be7d53346c31cfcc37424a32c30c8", |
| 20 "v8/platform/inspector_protocol": | 22 "v8/platform/inspector_protocol": |
| 21 Var("git_url") + "/chromium/src/third_party/WebKit/Source/platform/inspector
_protocol.git" + "@" + "f49542089820a34a9a6e33264e09b73779407512", | 23 Var("git_url") + "/chromium/src/third_party/WebKit/Source/platform/inspector
_protocol.git" + "@" + "f49542089820a34a9a6e33264e09b73779407512", |
| 22 "v8/tools/mb": | 24 "v8/tools/mb": |
| 23 Var('git_url') + '/chromium/src/tools/mb.git' + '@' + "f2acac06c11447a7155d4
76d61f140f18a4a8066", | 25 Var('git_url') + '/chromium/src/tools/mb.git' + '@' + "f2acac06c11447a7155d4
76d61f140f18a4a8066", |
| 24 "v8/tools/swarming_client": | 26 "v8/tools/swarming_client": |
| 25 Var('git_url') + '/external/swarming.client.git' + '@' + "7f63a272f7d9785ce4
1b6d10bb3106c49a968e57", | 27 Var('git_url') + '/external/swarming.client.git' + '@' + "7f63a272f7d9785ce4
1b6d10bb3106c49a968e57", |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 'name': 'clang', | 241 'name': 'clang', |
| 240 'pattern': '.', | 242 'pattern': '.', |
| 241 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 243 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 242 }, | 244 }, |
| 243 { | 245 { |
| 244 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 246 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 245 "pattern": ".", | 247 "pattern": ".", |
| 246 "action": ["python", "v8/gypfiles/gyp_v8"], | 248 "action": ["python", "v8/gypfiles/gyp_v8"], |
| 247 }, | 249 }, |
| 248 ] | 250 ] |
| OLD | NEW |