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": |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 "pattern": ".", | 183 "pattern": ".", |
184 "action": [ "download_from_google_storage", | 184 "action": [ "download_from_google_storage", |
185 "--no_resume", | 185 "--no_resume", |
186 "--platform=linux*", | 186 "--platform=linux*", |
187 "--no_auth", | 187 "--no_auth", |
188 "--bucket", "chromium-gn", | 188 "--bucket", "chromium-gn", |
189 "-s", "v8/buildtools/linux64/gn.sha1", | 189 "-s", "v8/buildtools/linux64/gn.sha1", |
190 ], | 190 ], |
191 }, | 191 }, |
192 { | 192 { |
| 193 # Downloads the current stable linux sysroot to build/linux/ if needed. |
| 194 # This sysroot updates at about the same rate that the chrome build deps |
| 195 # change. |
| 196 'name': 'sysroot', |
| 197 'pattern': '.', |
| 198 'action': [ |
| 199 'python', |
| 200 'v8/build/linux/sysroot_scripts/install-sysroot.py', |
| 201 '--running-as-hook', |
| 202 ], |
| 203 }, |
| 204 { |
193 # Update the Windows toolchain if necessary. | 205 # Update the Windows toolchain if necessary. |
194 'name': 'win_toolchain', | 206 'name': 'win_toolchain', |
195 'pattern': '.', | 207 'pattern': '.', |
196 'action': ['python', 'v8/gypfiles/vs_toolchain.py', 'update'], | 208 'action': ['python', 'v8/gypfiles/vs_toolchain.py', 'update'], |
197 }, | 209 }, |
198 # Pull binutils for linux, enabled debug fission for faster linking / | 210 # Pull binutils for linux, enabled debug fission for faster linking / |
199 # debugging when used with clang on Ubuntu Precise. | 211 # debugging when used with clang on Ubuntu Precise. |
200 # https://code.google.com/p/chromium/issues/detail?id=352046 | 212 # https://code.google.com/p/chromium/issues/detail?id=352046 |
201 { | 213 { |
202 'name': 'binutils', | 214 'name': 'binutils', |
(...skipping 16 matching lines...) Expand all Loading... |
219 'name': 'clang', | 231 'name': 'clang', |
220 'pattern': '.', | 232 'pattern': '.', |
221 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 233 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
222 }, | 234 }, |
223 { | 235 { |
224 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 236 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
225 "pattern": ".", | 237 "pattern": ".", |
226 "action": ["python", "v8/gypfiles/gyp_v8"], | 238 "action": ["python", "v8/gypfiles/gyp_v8"], |
227 }, | 239 }, |
228 ] | 240 ] |
OLD | NEW |