| 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 24 matching lines...) Expand all Loading... |
| 35 "shelf_rev": "@1e87b79b21ac5e6fa2f93576d6c06eaa65285ef4", | 35 "shelf_rev": "@1e87b79b21ac5e6fa2f93576d6c06eaa65285ef4", |
| 36 "shelf_web_socket_rev": "@ff170cec2c0e4e5722cdf47c557be63b5035a602", | 36 "shelf_web_socket_rev": "@ff170cec2c0e4e5722cdf47c557be63b5035a602", |
| 37 "source_span_rev": "@42501132e43599a151ba6727d340e44442f86c05", | 37 "source_span_rev": "@42501132e43599a151ba6727d340e44442f86c05", |
| 38 "stack_trace_rev": "@62a0cfe0c3e7270b75d71a7f356599bb63e5ae4e", | 38 "stack_trace_rev": "@62a0cfe0c3e7270b75d71a7f356599bb63e5ae4e", |
| 39 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", | 39 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", |
| 40 "unittest_rev": "@1625274a8b6309588eb4c0017b5b672a96ad3230", | 40 "unittest_rev": "@1625274a8b6309588eb4c0017b5b672a96ad3230", |
| 41 "watcher_rev": "@f1015e987b4e5a3b7fb65d8716ae9b5ee372b470", | 41 "watcher_rev": "@f1015e987b4e5a3b7fb65d8716ae9b5ee372b470", |
| 42 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", | 42 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", |
| 43 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", | 43 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", |
| 44 | 44 |
| 45 "co19_rev": "@786", | 45 "co19_rev": "@801", |
| 46 "fake_async_rev": "@38614", | 46 "fake_async_rev": "@38614", |
| 47 }) | 47 }) |
| 48 | 48 |
| 49 def massage_deps(deps): | 49 def massage_deps(deps): |
| 50 for key, value in deps.items(): | 50 for key, value in deps.items(): |
| 51 if value is None: continue | 51 if value is None: continue |
| 52 | 52 |
| 53 if value.startswith('/trunk'): | 53 if value.startswith('/trunk'): |
| 54 deps[key] = Var("chromium_url") + value | 54 deps[key] = Var("chromium_url") + value |
| 55 continue | 55 continue |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 hooks.append({ | 171 hooks.append({ |
| 172 # Peg the blink version number in LASTCHANGE.blink to be the upstream | 172 # Peg the blink version number in LASTCHANGE.blink to be the upstream |
| 173 # webkit_revision number so that chrome remote devtools pulls assets from | 173 # webkit_revision number so that chrome remote devtools pulls assets from |
| 174 # the right place. | 174 # the right place. |
| 175 "name": "lastchange", | 175 "name": "lastchange", |
| 176 "pattern": ".", | 176 "pattern": ".", |
| 177 "action": ["python", "-c", | 177 "action": ["python", "-c", |
| 178 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" + | 178 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" + |
| 179 Var('webkit_revision') + "\\n')" ], | 179 Var('webkit_revision') + "\\n')" ], |
| 180 }) | 180 }) |
| OLD | NEW |