| 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 "dartium_chromium_commit": "8df9de5a8f073d9c0feadf8d652408807e4a254e", | 11 "dartium_chromium_commit": "c2034f838194e802fdac0c6f9fe1a22e1a230513", |
| 12 "dartium_webkit_commit": "28b9a6c03797eaecf6c92677cba747eb9df0787c", | 12 "dartium_webkit_commit": "28b9a6c03797eaecf6c92677cba747eb9df0787c", |
| 13 "chromium_base_revision": "338390", | 13 "chromium_base_revision": "338390", |
| 14 | 14 |
| 15 # We use mirrors of all github repos to guarantee reproducibility and | 15 # We use mirrors of all github repos to guarantee reproducibility and |
| 16 # consistency between what users see and what the bots see. | 16 # consistency between what users see and what the bots see. |
| 17 # We need the mirrors to not have 100+ bots pulling github constantly. | 17 # We need the mirrors to not have 100+ bots pulling github constantly. |
| 18 # We mirror our github repos on chromium git servers. | 18 # We mirror our github repos on chromium git servers. |
| 19 # DO NOT use this var if you don't see a mirror here: | 19 # DO NOT use this var if you don't see a mirror here: |
| 20 # https://chromium.googlesource.com/ | 20 # https://chromium.googlesource.com/ |
| 21 # named like: | 21 # named like: |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 "--no_resume", | 216 "--no_resume", |
| 217 "--bucket", | 217 "--bucket", |
| 218 "dart-dependencies", | 218 "dart-dependencies", |
| 219 "--recursive", | 219 "--recursive", |
| 220 "--auto_platform", | 220 "--auto_platform", |
| 221 "--extract", | 221 "--extract", |
| 222 "--directory", | 222 "--directory", |
| 223 "src/dart/tools/sdks", | 223 "src/dart/tools/sdks", |
| 224 ], | 224 ], |
| 225 }) | 225 }) |
| OLD | NEW |