| 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": |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "name": "clang_format_linux", | 95 "name": "clang_format_linux", |
| 96 "pattern": ".", | 96 "pattern": ".", |
| 97 "action": [ "download_from_google_storage", | 97 "action": [ "download_from_google_storage", |
| 98 "--no_resume", | 98 "--no_resume", |
| 99 "--platform=linux*", | 99 "--platform=linux*", |
| 100 "--no_auth", | 100 "--no_auth", |
| 101 "--bucket", "chromium-clang-format", | 101 "--bucket", "chromium-clang-format", |
| 102 "-s", "v8/buildtools/linux64/clang-format.sha1", | 102 "-s", "v8/buildtools/linux64/clang-format.sha1", |
| 103 ], | 103 ], |
| 104 }, | 104 }, |
| 105 { |
| 106 'name': 'gcmole', |
| 107 'pattern': '.', |
| 108 'action': [ |
| 109 'python', |
| 110 'v8/tools/gcmole/download_gcmole_tools.py', |
| 111 ], |
| 112 }, |
| 105 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. | 113 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| 106 { | 114 { |
| 107 'name': 'luci-go_win', | 115 'name': 'luci-go_win', |
| 108 'pattern': '.', | 116 'pattern': '.', |
| 109 'action': [ 'download_from_google_storage', | 117 'action': [ 'download_from_google_storage', |
| 110 '--no_resume', | 118 '--no_resume', |
| 111 '--platform=win32', | 119 '--platform=win32', |
| 112 '--no_auth', | 120 '--no_auth', |
| 113 '--bucket', 'chromium-luci', | 121 '--bucket', 'chromium-luci', |
| 114 '-d', 'v8/tools/luci-go/win64', | 122 '-d', 'v8/tools/luci-go/win64', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 'name': 'clang', | 208 'name': 'clang', |
| 201 'pattern': '.', | 209 'pattern': '.', |
| 202 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 210 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 203 }, | 211 }, |
| 204 { | 212 { |
| 205 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 213 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 206 "pattern": ".", | 214 "pattern": ".", |
| 207 "action": ["python", "v8/build/gyp_v8"], | 215 "action": ["python", "v8/build/gyp_v8"], |
| 208 }, | 216 }, |
| 209 ] | 217 ] |
| OLD | NEW |