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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 { | 272 { |
273 # Pull clang if needed or requested via GYP_DEFINES. | 273 # Pull clang if needed or requested via GYP_DEFINES. |
274 # Note: On Win, this should run after win_toolchain, as it may use it. | 274 # Note: On Win, this should run after win_toolchain, as it may use it. |
275 'name': 'clang', | 275 'name': 'clang', |
276 'pattern': '.', | 276 'pattern': '.', |
277 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 277 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
278 }, | 278 }, |
279 { | 279 { |
280 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 280 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
281 "pattern": ".", | 281 "pattern": ".", |
282 "action": ["python", "v8/gypfiles/gyp_v8"], | 282 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], |
283 }, | 283 }, |
284 ] | 284 ] |
OLD | NEW |