| 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 "dartium_chromium_url": "http://src.chromium.org/chrome/branches/dart/1650/src
", | 11 "dartium_chromium_url": "http://src.chromium.org/chrome/branches/dart/1650/src
", |
| 12 "dartium_chromium_revision": "240209", | 12 "dartium_chromium_revision": "240209", |
| 13 # The Dart repository URL is pulled out here so that it can be easily | 13 # The Dart repository URL is pulled out here so that it can be easily |
| 14 # updated to "https" for committers. | 14 # updated to "https" for committers. |
| 15 "dart_branch": "/trunk", | 15 "dart_branch": "/branches/1.1", |
| 16 "dartium_webkit_trunk": "http://src.chromium.org/blink/branches/dart/1650", | 16 "dartium_webkit_trunk": "http://src.chromium.org/blink/branches/dart/1650", |
| 17 "dartium_webkit_revision": "164190", | 17 "dartium_webkit_revision": "164190", |
| 18 "bootstrap_css_rev" : "@28387", | 18 "bootstrap_css_rev" : "@28387", |
| 19 | 19 |
| 20 "co19_rev": "@672", | 20 "co19_rev": "@672", |
| 21 }) | 21 }) |
| 22 | 22 |
| 23 def massage_deps(deps): | 23 def massage_deps(deps): |
| 24 for key, value in deps.items(): | 24 for key, value in deps.items(): |
| 25 if value is None: continue | 25 if value is None: continue |
| (...skipping 28 matching lines...) Expand all Loading... |
| 54 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), | 54 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), |
| 55 | 55 |
| 56 "src/dart/runtime/bin/vmservice/client/deployed/web/bootstrap_css": | 56 "src/dart/runtime/bin/vmservice/client/deployed/web/bootstrap_css": |
| 57 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), | 57 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), |
| 58 }) | 58 }) |
| 59 | 59 |
| 60 hooks[0:0] = [{ | 60 hooks[0:0] = [{ |
| 61 "pattern": "dart", | 61 "pattern": "dart", |
| 62 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], | 62 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], |
| 63 }] | 63 }] |
| OLD | NEW |