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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 # change. | 209 # change. |
210 'name': 'sysroot', | 210 'name': 'sysroot', |
211 'pattern': '.', | 211 'pattern': '.', |
212 'action': [ | 212 'action': [ |
213 'python', | 213 'python', |
214 'v8/build/linux/sysroot_scripts/install-sysroot.py', | 214 'v8/build/linux/sysroot_scripts/install-sysroot.py', |
215 '--running-as-hook', | 215 '--running-as-hook', |
216 ], | 216 ], |
217 }, | 217 }, |
218 { | 218 { |
| 219 # Pull sanitizer-instrumented third-party libraries if requested via |
| 220 # GYP_DEFINES. |
| 221 'name': 'instrumented_libraries', |
| 222 'pattern': '\\.sha1', |
| 223 'action': [ |
| 224 'python', |
| 225 'v8/third_party/instrumented_libraries/scripts/download_binaries.py', |
| 226 ], |
| 227 }, |
| 228 { |
219 # Update the Windows toolchain if necessary. | 229 # Update the Windows toolchain if necessary. |
220 'name': 'win_toolchain', | 230 'name': 'win_toolchain', |
221 'pattern': '.', | 231 'pattern': '.', |
222 'action': ['python', 'v8/gypfiles/vs_toolchain.py', 'update'], | 232 'action': ['python', 'v8/gypfiles/vs_toolchain.py', 'update'], |
223 }, | 233 }, |
224 # Pull binutils for linux, enabled debug fission for faster linking / | 234 # Pull binutils for linux, enabled debug fission for faster linking / |
225 # debugging when used with clang on Ubuntu Precise. | 235 # debugging when used with clang on Ubuntu Precise. |
226 # https://code.google.com/p/chromium/issues/detail?id=352046 | 236 # https://code.google.com/p/chromium/issues/detail?id=352046 |
227 { | 237 { |
228 'name': 'binutils', | 238 'name': 'binutils', |
(...skipping 16 matching lines...) Expand all Loading... |
245 'name': 'clang', | 255 'name': 'clang', |
246 'pattern': '.', | 256 'pattern': '.', |
247 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 257 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
248 }, | 258 }, |
249 { | 259 { |
250 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 260 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
251 "pattern": ".", | 261 "pattern": ".", |
252 "action": ["python", "v8/gypfiles/gyp_v8"], | 262 "action": ["python", "v8/gypfiles/gyp_v8"], |
253 }, | 263 }, |
254 ] | 264 ] |
OLD | NEW |