Chromium Code Reviews| 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, 'multivm.deps', 'DEPS.chromium')) # Include proper C hromium DEPS. | 5 execfile(os.path.join(path, 'multivm.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 "multivm_base": "http://src.chromium.org", | 11 "multivm_base": "http://src.chromium.org", |
| 12 "multivm_chromium_commit": "4423aeda2e5bcfef62cea3b08be9175f81bf5499", | 12 "multivm_chromium_commit": "4423aeda2e5bcfef62cea3b08be9175f81bf5499", |
| 13 "multivm_chromium_position": "293090", | 13 "multivm_chromium_position": "293090", |
| 14 "chromium_base_position": | 14 "chromium_base_position": |
| 15 '{"Windows": "293090", ' + | 15 '{"Windows": "293094", ' + |
|
ricow1
2014/09/08 08:22:23
why?
| |
| 16 ' "Darwin": "293090", ' + | 16 ' "Darwin": "293090", ' + |
| 17 ' "Linux": "293090"}', | 17 ' "Linux": "293090"}', |
| 18 "dart_tools_branch": "/branches/bleeding_edge/dart/tools", | 18 "dart_tools_branch": "/branches/bleeding_edge/dart/tools", |
| 19 "dart_tools_revision": "39741", | 19 "dart_tools_revision": "39741", |
| 20 "multivm_blink_branch": "/blink/branches/dart/multivm", | 20 "multivm_blink_branch": "/blink/branches/dart/multivm", |
| 21 "multivm_blink_revision": "181476", | 21 "multivm_blink_revision": "181476", |
| 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(): |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 70 | 70 |
| 71 hooks.append({ | 71 hooks.append({ |
| 72 # Set the revision for a lazily downloaded reference build of chromium, | 72 # Set the revision for a lazily downloaded reference build of chromium, |
| 73 # with which to run perf tests. | 73 # with which to run perf tests. |
| 74 'name': 'set_reference_build', | 74 'name': 'set_reference_build', |
| 75 'pattern': '.', | 75 'pattern': '.', |
| 76 'action': ['python', | 76 'action': ['python', |
| 77 'src/dart/tools/bots/set_reference_build_revision.py', | 77 'src/dart/tools/bots/set_reference_build_revision.py', |
| 78 Var('chromium_base_position')], | 78 Var('chromium_base_position')], |
| 79 }) | 79 }) |
| OLD | NEW |