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": "7558afb6379171d7f96b2db68ae9d2b64b2c5544", | 11 "dartium_chromium_commit": "7558afb6379171d7f96b2db68ae9d2b64b2c5544", |
12 "dartium_webkit_commit": "56e20cfbfa7e1a680add908ed9c316c067454ff0", | 12 "dartium_webkit_commit": "058cbb040bc877febf93074c3c0a3e649613a466", |
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: |
22 # external/github.com/dart-lang/NAME | 22 # external/github.com/dart-lang/NAME |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 "download_from_google_storage", | 240 "download_from_google_storage", |
241 "--no_auth", | 241 "--no_auth", |
242 "--no_resume", | 242 "--no_resume", |
243 "--bucket", | 243 "--bucket", |
244 "dart-dependencies", | 244 "dart-dependencies", |
245 "--extract", | 245 "--extract", |
246 "-s", | 246 "-s", |
247 "src/dart/third_party/pkg/unittest.tar.gz.sha1", | 247 "src/dart/third_party/pkg/unittest.tar.gz.sha1", |
248 ], | 248 ], |
249 }) | 249 }) |
OLD | NEW |