| 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": "1ac95883b0e9e13d0ec62164f0ca461dacef8a4b", | 11   "dartium_chromium_commit": "51d367bc20ffec30155fb3d85672dc347444ece3", | 
| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 234     "download_from_google_storage", | 234     "download_from_google_storage", | 
| 235     "--no_auth", | 235     "--no_auth", | 
| 236     "--no_resume", | 236     "--no_resume", | 
| 237     "--bucket", | 237     "--bucket", | 
| 238     "dart-dependencies", | 238     "dart-dependencies", | 
| 239     "--extract", | 239     "--extract", | 
| 240     "-s", | 240     "-s", | 
| 241     "src/dart/third_party/pkg/unittest.tar.gz.sha1", | 241     "src/dart/third_party/pkg/unittest.tar.gz.sha1", | 
| 242   ], | 242   ], | 
| 243 }) | 243 }) | 
| OLD | NEW | 
|---|