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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 ], | 103 ], |
104 }, | 104 }, |
105 { | 105 { |
106 'name': 'gcmole', | 106 'name': 'gcmole', |
107 'pattern': '.', | 107 'pattern': '.', |
108 'action': [ | 108 'action': [ |
109 'python', | 109 'python', |
110 'v8/tools/gcmole/download_gcmole_tools.py', | 110 'v8/tools/gcmole/download_gcmole_tools.py', |
111 ], | 111 ], |
112 }, | 112 }, |
| 113 { |
| 114 'name': 'jsfunfuzz', |
| 115 'pattern': '.', |
| 116 'action': [ |
| 117 'python', |
| 118 'v8/tools/jsfunfuzz/download_jsfunfuzz.py', |
| 119 ], |
| 120 }, |
113 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. | 121 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
114 { | 122 { |
115 'name': 'luci-go_win', | 123 'name': 'luci-go_win', |
116 'pattern': '.', | 124 'pattern': '.', |
117 'action': [ 'download_from_google_storage', | 125 'action': [ 'download_from_google_storage', |
118 '--no_resume', | 126 '--no_resume', |
119 '--platform=win32', | 127 '--platform=win32', |
120 '--no_auth', | 128 '--no_auth', |
121 '--bucket', 'chromium-luci', | 129 '--bucket', 'chromium-luci', |
122 '-d', 'v8/tools/luci-go/win64', | 130 '-d', 'v8/tools/luci-go/win64', |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 'name': 'clang', | 216 'name': 'clang', |
209 'pattern': '.', | 217 'pattern': '.', |
210 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 218 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
211 }, | 219 }, |
212 { | 220 { |
213 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 221 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
214 "pattern": ".", | 222 "pattern": ".", |
215 "action": ["python", "v8/build/gyp_v8"], | 223 "action": ["python", "v8/build/gyp_v8"], |
216 }, | 224 }, |
217 ] | 225 ] |
OLD | NEW |