| 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", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 Var("multivm_url") + "/tools@" + Var("dartium_tools_revision"), | 48 Var("multivm_url") + "/tools@" + Var("dartium_tools_revision"), |
| 49 }) | 49 }) |
| 50 | 50 |
| 51 hooks[-1:-1] = [{ | 51 hooks[-1:-1] = [{ |
| 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 }, | |
| 59 { | |
| 60 # A change to any file causes an updated modification time for VERSION | |
| 61 # so that the Dart VM version reported through the Dart C API will be | |
| 62 # properly setup. | |
| 63 "pattern": "dart", | |
| 64 "action": ["python", "src/dart/tools/touch_version.py"], | |
| 65 }] | 58 }] |
| OLD | NEW |