| 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 | 9 |
| 10 "gyp_rev": "@1752", | 10 "gyp_rev": "@1752", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", | 91 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
| 92 "font_awesome_rev": "@31824", | 92 "font_awesome_rev": "@31824", |
| 93 "barback-0.13.0_rev": "@34853", | 93 "barback-0.13.0_rev": "@34853", |
| 94 "barback-0.14.0_rev": "@36398", | 94 "barback-0.14.0_rev": "@36398", |
| 95 "barback-0.14.1_rev": "@38525", | 95 "barback-0.14.1_rev": "@38525", |
| 96 "source_maps-0.9.4_rev": "@38524", | 96 "source_maps-0.9.4_rev": "@38524", |
| 97 } | 97 } |
| 98 | 98 |
| 99 deps = { | 99 deps = { |
| 100 "dart": | 100 "dart": |
| 101 "/trunk/dart", | 101 "/branches/1.9/dart", |
| 102 | 102 |
| 103 # Stuff needed for GYP to run. | 103 # Stuff needed for GYP to run. |
| 104 "dart/third_party/gyp": | 104 "dart/third_party/gyp": |
| 105 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), | 105 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), |
| 106 | 106 |
| 107 "dart/tests/co19/src": ((Var("googlecode_url") % "co19") + | 107 "dart/tests/co19/src": ((Var("googlecode_url") % "co19") + |
| 108 "/trunk/co19/tests/co19/src" + Var("co19_rev")), | 108 "/trunk/co19/tests/co19/src" + Var("co19_rev")), |
| 109 | 109 |
| 110 "dart/third_party/nss": | 110 "dart/third_party/nss": |
| 111 Var("chromium_git") + "/chromium/deps/nss.git" + Var("nss_rev"), | 111 Var("chromium_git") + "/chromium/deps/nss.git" + Var("nss_rev"), |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 }, | 305 }, |
| 306 { | 306 { |
| 307 "pattern": ".", | 307 "pattern": ".", |
| 308 "action": ["python", "dart/editor/build/generate_sources.py"], | 308 "action": ["python", "dart/editor/build/generate_sources.py"], |
| 309 }, | 309 }, |
| 310 { | 310 { |
| 311 "pattern": ".", | 311 "pattern": ".", |
| 312 "action": ["python", "dart/tools/gyp_dart.py"], | 312 "action": ["python", "dart/tools/gyp_dart.py"], |
| 313 }, | 313 }, |
| 314 ] | 314 ] |
| OLD | NEW |