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