| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 'name': 'luci-go_linux', | 127 'name': 'luci-go_linux', |
| 128 'pattern': '.', | 128 'pattern': '.', |
| 129 'action': [ 'download_from_google_storage', | 129 'action': [ 'download_from_google_storage', |
| 130 '--no_resume', | 130 '--no_resume', |
| 131 '--platform=linux*', | 131 '--platform=linux*', |
| 132 '--no_auth', | 132 '--no_auth', |
| 133 '--bucket', 'chromium-luci', | 133 '--bucket', 'chromium-luci', |
| 134 '-d', 'v8/tools/luci-go/linux64', | 134 '-d', 'v8/tools/luci-go/linux64', |
| 135 ], | 135 ], |
| 136 }, | 136 }, |
| 137 { |
| 138 # Update the Windows toolchain if necessary. |
| 139 'name': 'win_toolchain', |
| 140 'pattern': '.', |
| 141 'action': ['python', 'v8/build/vs_toolchain.py', 'update'], |
| 142 }, |
| 137 # Pull binutils for linux, enabled debug fission for faster linking / | 143 # Pull binutils for linux, enabled debug fission for faster linking / |
| 138 # debugging when used with clang on Ubuntu Precise. | 144 # debugging when used with clang on Ubuntu Precise. |
| 139 # https://code.google.com/p/chromium/issues/detail?id=352046 | 145 # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 140 { | 146 { |
| 141 'name': 'binutils', | 147 'name': 'binutils', |
| 142 'pattern': 'v8/third_party/binutils', | 148 'pattern': 'v8/third_party/binutils', |
| 143 'action': [ | 149 'action': [ |
| 144 'python', | 150 'python', |
| 145 'v8/third_party/binutils/download.py', | 151 'v8/third_party/binutils/download.py', |
| 146 ], | 152 ], |
| (...skipping 11 matching lines...) Expand all Loading... |
| 158 'name': 'clang', | 164 'name': 'clang', |
| 159 'pattern': '.', | 165 'pattern': '.', |
| 160 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 166 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 161 }, | 167 }, |
| 162 { | 168 { |
| 163 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 169 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 164 "pattern": ".", | 170 "pattern": ".", |
| 165 "action": ["python", "v8/build/gyp_v8"], | 171 "action": ["python", "v8/build/gyp_v8"], |
| 166 }, | 172 }, |
| 167 ] | 173 ] |
| OLD | NEW |