| 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", | 10 "chromium_url": "http://src.chromium.org/svn", |
| 11 | 11 |
| 12 "gyp_rev": "@1495", | 12 "gyp_rev": "@1495", |
| 13 "nss_rev": "@209026", | 13 "nss_rev": "@209026", |
| 14 "nss_pkcs12_rev" : "@26000", | |
| 15 | 14 |
| 16 "co19_rev": "@515", | 15 "co19_rev": "@515", |
| 17 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/", | 16 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/", |
| 18 } | 17 } |
| 19 | 18 |
| 20 deps = { | 19 deps = { |
| 21 "dart": | 20 "dart": |
| 22 Var("dart_branch") + "/dart", | 21 Var("dart_branch") + "/dart", |
| 23 | 22 |
| 24 # co19 tests. | 23 # co19 tests. |
| 25 "dart/tests/co19/src": | 24 "dart/tests/co19/src": |
| 26 Var("co19_repo") + "tests/co19/src" + Var("co19_rev"), | 25 Var("co19_repo") + "tests/co19/src" + Var("co19_rev"), |
| 27 | 26 |
| 28 # Stuff needed for GYP to run. | 27 # Stuff needed for GYP to run. |
| 29 "dart/third_party/gyp": | 28 "dart/third_party/gyp": |
| 30 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), | 29 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), |
| 31 | 30 |
| 32 # Stuff needed for secure sockets. | 31 # Stuff needed for secure sockets. |
| 33 "dart/third_party/nss": | 32 "dart/third_party/nss": |
| 34 Var("chromium_url") + "/trunk/deps/third_party/nss" + Var("nss_rev"), | 33 Var("chromium_url") + "/trunk/deps/third_party/nss" + Var("nss_rev"), |
| 35 | 34 |
| 36 "dart/third_party/sqlite": | 35 "dart/third_party/sqlite": |
| 37 Var("chromium_url") + "/trunk/src/third_party/sqlite" + Var("nss_rev"), | 36 Var("chromium_url") + "/trunk/src/third_party/sqlite" + Var("nss_rev"), |
| 38 | 37 |
| 39 "dart/third_party/zlib": | 38 "dart/third_party/zlib": |
| 40 Var("chromium_url") + "/trunk/src/third_party/zlib" + Var("nss_rev"), | 39 Var("chromium_url") + "/trunk/src/third_party/zlib" + Var("nss_rev"), |
| 41 | 40 |
| 42 "dart/third_party/net_nss": | 41 "dart/third_party/net_nss": |
| 43 Var("chromium_url") + "/trunk/src/net/third_party/nss" + Var("nss_rev"), | 42 Var("chromium_url") + "/trunk/src/net/third_party/nss" + Var("nss_rev"), |
| 44 | |
| 45 "dart/third_party/nss_pkcs12": | |
| 46 "/third_party/nss_pkcs12" + Var("nss_pkcs12_rev"), | |
| 47 } | 43 } |
| 48 | 44 |
| 49 deps_os = { | 45 deps_os = { |
| 50 "win": { | 46 "win": { |
| 51 "third_party/cygwin": | 47 "third_party/cygwin": |
| 52 Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", | 48 Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", |
| 53 }, | 49 }, |
| 54 } | 50 } |
| 55 | 51 |
| 56 hooks = [ | 52 hooks = [ |
| 57 { | 53 { |
| 58 "pattern": ".", | 54 "pattern": ".", |
| 59 "action": ["python", "dart/tools/generate_projects.py", "runtime"], | 55 "action": ["python", "dart/tools/generate_projects.py", "runtime"], |
| 60 }, | 56 }, |
| 61 ] | 57 ] |
| OLD | NEW |