| 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, 'clank.deps', 'DEPS.chromium')) # Include proper Chr
omium DEPS. | 5 execfile(os.path.join(path, 'clank.deps', 'DEPS.chromium')) # Include proper Chr
omium 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 "clank_url": "https://chrome-internal.googlesource.com/clank/", | 13 "clank_url": "https://chrome-internal.googlesource.com/clank/", |
| 14 # This revision number should be kept in sync with the version of clank that | 14 # This revision number should be kept in sync with the version of clank that |
| 15 # uses a similar chromium revision to that mentioned just above in | 15 # uses a similar chromium revision to that mentioned just above in |
| 16 # "chromium_revision". You can check which might be a good revision at: | 16 # "chromium_revision". You can check which might be a good revision at: |
| 17 # https://chrome-internal.googlesource.com/clank/internal/apps/+log/1650 | 17 # https://chrome-internal.googlesource.com/clank/internal/apps/+log/1650 |
| 18 "clank_rev": "29a5033df398d9b922296a18954b15b29600aa9c", | 18 "clank_rev": "29a5033df398d9b922296a18954b15b29600aa9c", |
| 19 "chrome_internal": "https://chrome-internal.googlesource.com/", | 19 "chrome_internal": "https://chrome-internal.googlesource.com/", |
| 20 # The Dart repository URL is pulled out here so that it can be easily | 20 # The Dart repository URL is pulled out here so that it can be easily |
| 21 # updated to "https" for committers. | 21 # updated to "https" for committers. |
| 22 "dart_branch": "/trunk", | 22 "dart_branch": "/branches/1.1", |
| 23 "dartium_webkit_trunk": "http://src.chromium.org/blink/branches/dart/1650", | 23 "dartium_webkit_trunk": "http://src.chromium.org/blink/branches/dart/1650", |
| 24 "dartium_webkit_revision": "164364", | 24 "dartium_webkit_revision": "164364", |
| 25 "bootstrap_css_rev" : "@28387", | 25 "bootstrap_css_rev" : "@28387", |
| 26 | 26 |
| 27 "co19_rev": "@672", | 27 "co19_rev": "@672", |
| 28 }) | 28 }) |
| 29 | 29 |
| 30 def massage_deps(deps): | 30 def massage_deps(deps): |
| 31 for key, value in deps.items(): | 31 for key, value in deps.items(): |
| 32 if value is None: continue | 32 if value is None: continue |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), | 67 "/third_party/bootstrap_css" + Var("bootstrap_css_rev"), |
| 68 }) | 68 }) |
| 69 | 69 |
| 70 hooks[0:0] = [{ | 70 hooks[0:0] = [{ |
| 71 "pattern": "dart", | 71 "pattern": "dart", |
| 72 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], | 72 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], |
| 73 }] | 73 }] |
| 74 | 74 |
| 75 target_os = ['android'] | 75 target_os = ['android'] |
| 76 | 76 |
| OLD | NEW |