| 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": "219647", | 11 "chromium_revision": "219647", |
| 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": "1436", | 17 "dartium_webkit_revision": "1436", |
| 18 "dartium_tools_revision": "1426", | 18 "dartium_tools_revision": "1426", |
| 19 "bootstrap_css_rev" : "@28387", | 19 "bootstrap_css_rev" : "@28387", |
| 20 | 20 |
| 21 "co19_rev": "@607", | 21 "co19_rev": "@623", |
| 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 27 matching lines...) Expand all Loading... |
| 59 }) | 59 }) |
| 60 | 60 |
| 61 hooks[0:0] = [{ | 61 hooks[0:0] = [{ |
| 62 "pattern": ".", | 62 "pattern": ".", |
| 63 "action": ["python", "src/dartium_tools/export_overrides.py"], | 63 "action": ["python", "src/dartium_tools/export_overrides.py"], |
| 64 }, | 64 }, |
| 65 { | 65 { |
| 66 "pattern": "dart", | 66 "pattern": "dart", |
| 67 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], | 67 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], |
| 68 }] | 68 }] |
| OLD | NEW |