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 { | |
205 # Update the Windows toolchain if necessary. | 193 # Update the Windows toolchain if necessary. |
206 'name': 'win_toolchain', | 194 'name': 'win_toolchain', |
207 'pattern': '.', | 195 'pattern': '.', |
208 'action': ['python', 'v8/gypfiles/vs_toolchain.py', 'update'], | 196 'action': ['python', 'v8/gypfiles/vs_toolchain.py', 'update'], |
209 }, | 197 }, |
210 # Pull binutils for linux, enabled debug fission for faster linking / | 198 # Pull binutils for linux, enabled debug fission for faster linking / |
211 # debugging when used with clang on Ubuntu Precise. | 199 # debugging when used with clang on Ubuntu Precise. |
212 # https://code.google.com/p/chromium/issues/detail?id=352046 | 200 # https://code.google.com/p/chromium/issues/detail?id=352046 |
213 { | 201 { |
214 'name': 'binutils', | 202 'name': 'binutils', |
(...skipping 16 matching lines...) Expand all Loading... |
231 'name': 'clang', | 219 'name': 'clang', |
232 'pattern': '.', | 220 'pattern': '.', |
233 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 221 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
234 }, | 222 }, |
235 { | 223 { |
236 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 224 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
237 "pattern": ".", | 225 "pattern": ".", |
238 "action": ["python", "v8/gypfiles/gyp_v8"], | 226 "action": ["python", "v8/gypfiles/gyp_v8"], |
239 }, | 227 }, |
240 ] | 228 ] |
OLD | NEW |