OLD | NEW |
1 | 1 |
2 import gclient_utils | 2 import gclient_utils |
3 import os | 3 import os |
4 | 4 |
5 path = gclient_utils.FindGclientRoot(os.getcwd()) | 5 path = gclient_utils.FindGclientRoot(os.getcwd()) |
6 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP
S.chromium')) # Include proper Chromium DEPS. | 6 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP
S.chromium')) # Include proper Chromium DEPS. |
7 | 7 |
8 # Now we need to override some settings and add some new ones. | 8 # Now we need to override some settings and add some new ones. |
9 | 9 |
10 vars.update({ | 10 vars.update({ |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 # Peg the blink version number in LASTCHANGE.blink to be the upstream | 224 # Peg the blink version number in LASTCHANGE.blink to be the upstream |
225 # webkit_revision number so that chrome remote devtools pulls assets from | 225 # webkit_revision number so that chrome remote devtools pulls assets from |
226 # the right place. | 226 # the right place. |
227 "name": "lastchange", | 227 "name": "lastchange", |
228 "pattern": ".", | 228 "pattern": ".", |
229 "action": ["python", "-c", | 229 "action": ["python", "-c", |
230 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" + | 230 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" + |
231 Var('webkit_revision') + "\\n')" ], | 231 Var('webkit_revision') + "\\n')" ], |
232 }) | 232 }) |
233 hooks.append({ | 233 hooks.append({ |
234 "name": "checked_in_dart_binaries", | |
235 "pattern": ".", | |
236 "action": [ | |
237 "download_from_google_storage", | |
238 "--no_auth", | |
239 "--no_resume", | |
240 "--bucket", | |
241 "dart-dependencies", | |
242 "--recursive", | |
243 "--directory", | |
244 "src/dart/tools/testing/bin", | |
245 ], | |
246 }) | |
247 hooks.append({ | |
248 "name": "checked_in_dart_sdks", | 234 "name": "checked_in_dart_sdks", |
249 "pattern": ".", | 235 "pattern": ".", |
250 "action": [ | 236 "action": [ |
251 "download_from_google_storage", | 237 "download_from_google_storage", |
252 "--no_auth", | 238 "--no_auth", |
253 "--no_resume", | 239 "--no_resume", |
254 "--bucket", | 240 "--bucket", |
255 "dart-dependencies", | 241 "dart-dependencies", |
256 "--recursive", | 242 "--recursive", |
257 "--auto_platform", | 243 "--auto_platform", |
258 "--extract", | 244 "--extract", |
259 "--directory", | 245 "--directory", |
260 "src/dart/tools/sdks", | 246 "src/dart/tools/sdks", |
261 ], | 247 ], |
262 }) | 248 }) |
OLD | NEW |