| 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": "51d367bc20ffec30155fb3d85672dc347444ece3", | 11 "dartium_chromium_commit": "a0717ebdcf4578b98de1d858005aa9c5f346bd33" |
| 12 "chromium_base_revision": "378081", | 12 "chromium_base_revision": "378081", |
| 13 | 13 |
| 14 # We use mirrors of all github repos to guarantee reproducibility and | 14 # We use mirrors of all github repos to guarantee reproducibility and |
| 15 # consistency between what users see and what the bots see. | 15 # consistency between what users see and what the bots see. |
| 16 # We need the mirrors to not have 100+ bots pulling github constantly. | 16 # We need the mirrors to not have 100+ bots pulling github constantly. |
| 17 # We mirror our github repos on chromium git servers. | 17 # We mirror our github repos on chromium git servers. |
| 18 # DO NOT use this var if you don't see a mirror here: | 18 # DO NOT use this var if you don't see a mirror here: |
| 19 # https://chromium.googlesource.com/ | 19 # https://chromium.googlesource.com/ |
| 20 # named like: | 20 # named like: |
| 21 # external/github.com/dart-lang/NAME | 21 # external/github.com/dart-lang/NAME |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "download_from_google_storage", | 215 "download_from_google_storage", |
| 216 "--no_auth", | 216 "--no_auth", |
| 217 "--no_resume", | 217 "--no_resume", |
| 218 "--bucket", | 218 "--bucket", |
| 219 "dart-dependencies", | 219 "dart-dependencies", |
| 220 "--extract", | 220 "--extract", |
| 221 "-s", | 221 "-s", |
| 222 "src/dart/third_party/pkg/unittest.tar.gz.sha1", | 222 "src/dart/third_party/pkg/unittest.tar.gz.sha1", |
| 223 ], | 223 ], |
| 224 }) | 224 }) |
| OLD | NEW |