| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 vars = { | 5 vars = { |
| 6 # Use this googlecode_url variable only if there is an internal mirror for it. | 6 # Use this googlecode_url variable only if there is an internal mirror for it. |
| 7 # If you do not know, use the full path while defining your new deps entry. | 7 # If you do not know, use the full path while defining your new deps entry. |
| 8 "googlecode_url": "http://%s.googlecode.com/svn", | 8 "googlecode_url": "http://%s.googlecode.com/svn", |
| 9 "dart_branch": "/branches/bleeding_edge", | 9 "dart_branch": "/branches/bleeding_edge", |
| 10 "chromium_url": "http://src.chromium.org/svn", | |
| 11 | 10 |
| 12 "gyp_rev": "@1752", | 11 "gyp_rev": "@1752", |
| 13 "nss_rev": "@257452", | 12 "co19_rev": "@761", |
| 13 "chromium_git": "https://chromium.googlesource.com", |
| 14 | 14 |
| 15 # Stuff needed to run pkg tests. | 15 # Revisions of /third_party/* dependencies. |
| 16 "fake_async_rev": "@38614", | 16 "fake_async_rev": "@38614", |
| 17 "net_nss_rev": "@bf6305a7aa19bdcf8f590ceb5e16384f9af63745", |
| 18 "nss_rev": "@7b5b6ec41cf9105bd6e1c9a5157982f821282a4c", |
| 17 "petitparser_rev" : "@37878", | 19 "petitparser_rev" : "@37878", |
| 18 | 20 "sqlite_rev": "@38811b79f42801662adc0458a25270ab690a6b81", |
| 19 # co19 tests. | 21 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
| 20 "co19_rev": "@761", | |
| 21 } | 22 } |
| 22 | 23 |
| 23 deps = { | 24 deps = { |
| 24 "dart": | 25 "dart": |
| 25 Var("dart_branch") + "/dart", | 26 Var("dart_branch") + "/dart", |
| 26 | 27 |
| 27 # co19 tests. | 28 # co19 tests. |
| 28 "dart/tests/co19/src": ((Var("googlecode_url") % "co19") + | 29 "dart/tests/co19/src": ((Var("googlecode_url") % "co19") + |
| 29 "/trunk/co19/tests/co19/src" + Var("co19_rev")), | 30 "/trunk/co19/tests/co19/src" + Var("co19_rev")), |
| 30 | 31 |
| 31 # Stuff needed for GYP to run. | 32 # Stuff needed for GYP to run. |
| 32 "dart/third_party/gyp": | 33 "dart/third_party/gyp": |
| 33 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), | 34 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), |
| 34 | 35 |
| 35 # Stuff needed for secure sockets. | 36 # Stuff needed for secure sockets. |
| 36 "dart/third_party/nss": | 37 "dart/third_party/nss": |
| 37 Var("chromium_url") + "/trunk/deps/third_party/nss" + Var("nss_rev"), | 38 Var("chromium_git") + "/chromium/deps/nss.git" + Var("nss_rev"), |
| 38 | 39 |
| 39 "dart/third_party/sqlite": | 40 "dart/third_party/sqlite": |
| 40 Var("chromium_url") + "/trunk/src/third_party/sqlite" + Var("nss_rev"), | 41 Var("chromium_git") + "/chromium/src/third_party/sqlite.git" + |
| 42 Var("sqlite_rev"), |
| 41 | 43 |
| 42 "dart/third_party/zlib": | 44 "dart/third_party/zlib": |
| 43 Var("chromium_url") + "/trunk/src/third_party/zlib" + Var("nss_rev"), | 45 Var("chromium_git") + "/chromium/src/third_party/zlib.git" + |
| 46 Var("zlib_rev"), |
| 44 | 47 |
| 45 "dart/third_party/net_nss": | 48 "dart/third_party/net_nss": |
| 46 Var("chromium_url") + "/trunk/src/net/third_party/nss" + Var("nss_rev"), | 49 Var("chromium_git") + "/chromium/src/net/third_party/nss.git" + |
| 50 Var("net_nss_rev"), |
| 47 | 51 |
| 48 # Stuff needed to run pkg tests. | 52 # Stuff needed to run pkg tests. |
| 49 "dart/third_party/pkg/fake_async": | 53 "dart/third_party/pkg/fake_async": |
| 50 "/third_party/fake_async" + Var("fake_async_rev"), | 54 "/third_party/fake_async" + Var("fake_async_rev"), |
| 51 "dart/third_party/pkg/petitparser": | 55 "dart/third_party/pkg/petitparser": |
| 52 "/third_party/petitparser" + Var("petitparser_rev"), | 56 "/third_party/petitparser" + Var("petitparser_rev"), |
| 53 } | 57 } |
| 54 | 58 |
| 55 deps_os = { | 59 deps_os = { |
| 56 "win": { | 60 "win": { |
| 57 "third_party/cygwin": | 61 "third_party/cygwin": |
| 58 Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", | 62 Var("chromium_git") + "/chromium/deps/cygwin.git" + |
| 63 "@c89e446b273697fadf3a10ff1007a97c0b7de6df", |
| 59 }, | 64 }, |
| 60 } | 65 } |
| 61 | 66 |
| 62 hooks = [ | 67 hooks = [ |
| 63 { | 68 { |
| 64 "pattern": ".", | 69 "pattern": ".", |
| 65 "action": ["python", "dart/tools/gyp_dart.py", "runtime"], | 70 "action": ["python", "dart/tools/gyp_dart.py", "runtime"], |
| 66 }, | 71 }, |
| 67 ] | 72 ] |
| OLD | NEW |