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({ |
11 "chromium_url": "http://src.chromium.org/svn", | 11 "chromium_url": "http://src.chromium.org/svn", |
12 "dartium_base": "http://src.chromium.org", | 12 "dartium_base": "http://src.chromium.org", |
13 "dartium_chromium_branch": "master", | 13 "dartium_chromium_branch": "master", |
14 "dartium_chromium_commit": "62a7524d4f71c9e0858d24b0aa1bbff3a2d09bff", | 14 "dartium_chromium_commit": "62a7524d4f71c9e0858d24b0aa1bbff3a2d09bff", |
15 "chromium_base_revision": "297060", | 15 "chromium_base_revision": "297060", |
16 "dartium_webkit_branch": "/blink/branches/dart/dartium", | 16 "dartium_webkit_branch": "/blink/branches/dart/dartium", |
17 "dartium_webkit_revision": "202538", | 17 "dartium_webkit_revision": "202670", |
18 | 18 |
19 # We use mirrors of all github repos to guarantee reproducibility and | 19 # We use mirrors of all github repos to guarantee reproducibility and |
20 # consistency between what users see and what the bots see. | 20 # consistency between what users see and what the bots see. |
21 # We need the mirrors to not have 100+ bots pulling github constantly. | 21 # We need the mirrors to not have 100+ bots pulling github constantly. |
22 # We mirror our github repos on chromium git servers. | 22 # We mirror our github repos on chromium git servers. |
23 # DO NOT use this var if you don't see a mirror here: | 23 # DO NOT use this var if you don't see a mirror here: |
24 # https://chromium.googlesource.com/ | 24 # https://chromium.googlesource.com/ |
25 # named like: | 25 # named like: |
26 # external/github.com/dart-lang/NAME | 26 # external/github.com/dart-lang/NAME |
27 # It is ok to add a dependency directly on dart-lang (dart-lang only) | 27 # It is ok to add a dependency directly on dart-lang (dart-lang only) |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 "--no_resume", | 253 "--no_resume", |
254 "--bucket", | 254 "--bucket", |
255 "dart-dependencies", | 255 "dart-dependencies", |
256 "--recursive", | 256 "--recursive", |
257 "--auto_platform", | 257 "--auto_platform", |
258 "--extract", | 258 "--extract", |
259 "--directory", | 259 "--directory", |
260 "src/dart/tools/sdks", | 260 "src/dart/tools/sdks", |
261 ], | 261 ], |
262 }) | 262 }) |
OLD | NEW |