Chromium Code Reviews| Index: dartium.deps/DEPS |
| diff --git a/dartium.deps/DEPS b/dartium.deps/DEPS |
| index a97dcdb509d3ec2666b6cdc8bddcd7a52ed48fce..10bcee446cc6f6a3187f219c2dfe9cbf12f60105 100644 |
| --- a/dartium.deps/DEPS |
| +++ b/dartium.deps/DEPS |
| @@ -9,15 +9,18 @@ execfile(os.path.join(path, 'dartium.deps', 'DEPS.chromium')) # Include proper C |
| vars.update({ |
| "chromium_url": "http://src.chromium.org/svn", |
| "dartium_base": "http://src.chromium.org", |
| - "dartium_chromium_branch": "/chrome/branches/dart/1985/src", |
| - "dartium_chromium_revision": "286245", |
| - "chromium_base_revision": "269467", |
| + "dartium_chromium_branch": "/chrome/branches/dart/dartium/src", |
| + "dartium_chromium_revision": "284674", |
| + # Git hashes of archived chromium builds closest to r278856. |
| + "chromium_base_revision": |
| + '{"Windows":"9332044293a666d077a214b735a31ba9f3debed7", ' + |
| + ' "Darwin": "db25a7e9bf34e638a1cbb4c8974ca566c22eb62c", ' + |
| + ' "Linux": "abe29e2ae1ad6d9bd8a7bfa23b3316a203d39ef2"}', |
| "dart_branch": "/branches/bleeding_edge", |
| - "dartium_webkit_branch": "/blink/branches/dart/1985", |
| - "dartium_webkit_revision": "178946", |
| + "dartium_webkit_branch": "/blink/branches/dart/dartium", |
| + "dartium_webkit_revision": "179229", |
| "co19_rev": "@738", |
| - "fake_async_rev": "@38614", |
|
kustermann
2014/07/30 13:29:46
see comment below
|
| }) |
| def massage_deps(deps): |
| @@ -51,11 +54,8 @@ deps.update({ |
| "src/dart/third_party/WebCore": |
| "/third_party/WebCore", |
| - "src/dart/third_party/pkg/fake_async": |
| - "/third_party/fake_async" + Var("fake_async_rev"), |
|
kustermann
2014/07/30 13:29:46
I think you should not remove this one. It was rec
vsm
2014/07/30 13:36:49
Done. Thanks for the catch.
On 2014/07/30 13:29:
|
| - |
| "src/dart/tests/co19/src": ((Var("googlecode_url") % "co19") + |
| - "/trunk/co19/tests/co19/src" + Var("co19_rev")), |
| + "/trunk/co19/tests/co19/src" + Var("co19_rev")), |
| }) |