| OLD | NEW |
| 1 import gclient_utils | 1 import gclient_utils |
| 2 import os | 2 import os |
| 3 | 3 |
| 4 path = gclient_utils.FindGclientRoot(os.getcwd()) | 4 path = gclient_utils.FindGclientRoot(os.getcwd()) |
| 5 execfile(os.path.join(path, 'dartium.deps', 'DEPS.chromium')) # Include proper C
hromium DEPS. | 5 execfile(os.path.join(path, 'dartium.deps', 'DEPS.chromium')) # Include proper C
hromium DEPS. |
| 6 | 6 |
| 7 # Now we need to override some settings and add some new ones. | 7 # Now we need to override some settings and add some new ones. |
| 8 | 8 |
| 9 vars.update({ | 9 vars.update({ |
| 10 "chromium_url": "http://src.chromium.org/svn", | 10 "chromium_url": "http://src.chromium.org/svn", |
| 11 "chromium_revision": "224845", | 11 "chromium_revision": "224845", |
| 12 # The Dart repository URL is pulled out here so that it can be easily | 12 # The Dart repository URL is pulled out here so that it can be easily |
| 13 # updated to "https" for committers. | 13 # updated to "https" for committers. |
| 14 "dart_branch": "/branches/bleeding_edge", | 14 "dart_branch": "/branches/bleeding_edge", |
| 15 "multivm_url": "http://src.chromium.org/multivm/trunk", | 15 "multivm_url": "http://src.chromium.org/multivm/trunk", |
| 16 "dartium_webkit_trunk": "http://src.chromium.org/multivm/trunk/webkit", | 16 "dartium_webkit_trunk": "http://src.chromium.org/multivm/trunk/webkit", |
| 17 "dartium_webkit_revision": "1478", | 17 "dartium_webkit_revision": "1478", |
| 18 "dartium_tools_revision": "1479", | 18 "dartium_tools_revision": "1479", |
| 19 "bootstrap_css_rev" : "@28387", | 19 "bootstrap_css_rev" : "@28387", |
| 20 | 20 |
| 21 "co19_rev": "@623", | 21 "co19_rev": "@641", |
| 22 }) | 22 }) |
| 23 | 23 |
| 24 def massage_deps(deps): | 24 def massage_deps(deps): |
| 25 for key, value in deps.items(): | 25 for key, value in deps.items(): |
| 26 if value is None: continue | 26 if value is None: continue |
| 27 | 27 |
| 28 if value.startswith('/trunk'): | 28 if value.startswith('/trunk'): |
| 29 deps[key] = Var("chromium_url") + value | 29 deps[key] = Var("chromium_url") + value |
| 30 continue | 30 continue |
| 31 | 31 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 }) | 65 }) |
| 66 | 66 |
| 67 hooks[0:0] = [{ | 67 hooks[0:0] = [{ |
| 68 "pattern": ".", | 68 "pattern": ".", |
| 69 "action": ["python", "src/dartium_tools/export_overrides.py"], | 69 "action": ["python", "src/dartium_tools/export_overrides.py"], |
| 70 }, | 70 }, |
| 71 { | 71 { |
| 72 "pattern": "dart", | 72 "pattern": "dart", |
| 73 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], | 73 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], |
| 74 }] | 74 }] |
| OLD | NEW |