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/gyp": | 10 "v8/build/gyp": |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 ], | 81 ], |
82 }, | 82 }, |
83 { | 83 { |
84 # Pull clang if needed or requested via GYP_DEFINES. | 84 # Pull clang if needed or requested via GYP_DEFINES. |
85 # Note: On Win, this should run after win_toolchain, as it may use it. | 85 # Note: On Win, this should run after win_toolchain, as it may use it. |
86 'name': 'clang', | 86 'name': 'clang', |
87 'pattern': '.', | 87 'pattern': '.', |
88 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 88 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
89 }, | 89 }, |
90 { | 90 { |
| 91 # Generate v8 version based on the last git tag. |
| 92 "pattern": ".", |
| 93 "action": ["python", |
| 94 "v8/tools/push-to-trunk/generate_version.py", |
| 95 "--hook"], |
| 96 }, |
| 97 { |
91 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 98 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
92 "pattern": ".", | 99 "pattern": ".", |
93 "action": ["python", "v8/build/gyp_v8"], | 100 "action": ["python", "v8/build/gyp_v8"], |
94 }, | 101 }, |
95 ] | 102 ] |
OLD | NEW |