| 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": "/trunk", | 14 "dart_branch": "/branches/0.7", |
| 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": "1393", | 17 "dartium_webkit_revision": "1393", |
| 18 "dartium_tools_revision": "1394", | 18 "dartium_tools_revision": "1394", |
| 19 }) | 19 }) |
| 20 | 20 |
| 21 def massage_deps(deps): | 21 def massage_deps(deps): |
| 22 for key, value in deps.items(): | 22 for key, value in deps.items(): |
| 23 if value is None: continue | 23 if value is None: continue |
| 24 | 24 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 49 }) | 49 }) |
| 50 | 50 |
| 51 hooks[0:0] = [{ | 51 hooks[0:0] = [{ |
| 52 "pattern": ".", | 52 "pattern": ".", |
| 53 "action": ["python", "src/dartium_tools/export_overrides.py"], | 53 "action": ["python", "src/dartium_tools/export_overrides.py"], |
| 54 }, | 54 }, |
| 55 { | 55 { |
| 56 "pattern": "dart", | 56 "pattern": "dart", |
| 57 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], | 57 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], |
| 58 }] | 58 }] |
| OLD | NEW |