| OLD | NEW |
| 1 # Copyright (c) 2011, 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 "gyp_rev": "@937", | 6 "gyp_rev": "@937", |
| 7 "co19_rev": "@164", | 7 "co19_rev": "@164", |
| 8 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/", | 8 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/", |
| 9 "chromium_url": "http://src.chromium.org/svn", | 9 "chromium_url": "http://src.chromium.org/svn", |
| 10 } | 10 } |
| 11 | 11 |
| 12 deps = { | 12 deps = { |
| 13 "dart": | 13 "dart": |
| 14 "/branches/bleeding_edge/dart", | 14 "/branches/bleeding_edge/dart", |
| 15 | 15 |
| 16 # Stuff needed for GYP to run. | 16 # Stuff needed for GYP to run. |
| 17 "dart/third_party/gyp": | 17 "dart/third_party/gyp": |
| 18 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), | 18 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), |
| 19 | 19 |
| 20 "dart/third_party/v8": | 20 "dart/third_party/v8": |
| 21 "http://v8.googlecode.com/svn/branches/3.4", | 21 "http://v8.googlecode.com/svn/branches/3.10", |
| 22 | 22 |
| 23 "dart/tests/co19/src": | 23 "dart/tests/co19/src": |
| 24 Var("co19_repo") + "tests/co19/src" + Var("co19_rev"), | 24 Var("co19_repo") + "tests/co19/src" + Var("co19_rev"), |
| 25 } | 25 } |
| 26 | 26 |
| 27 deps_os = { | 27 deps_os = { |
| 28 "win": { | 28 "win": { |
| 29 "dart/third_party/cygwin": | 29 "dart/third_party/cygwin": |
| 30 Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", | 30 Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", |
| 31 }, | 31 }, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 53 { | 53 { |
| 54 "pattern": ".", | 54 "pattern": ".", |
| 55 "action": ["python", "dart/tools/generate_projects.py", "frog"], | 55 "action": ["python", "dart/tools/generate_projects.py", "frog"], |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 "pattern": ".", | 58 "pattern": ".", |
| 59 "action": ["python", "dart/third_party/gyp/gyp", "--depth=dart", | 59 "action": ["python", "dart/third_party/gyp/gyp", "--depth=dart", |
| 60 "-Idart/tools/gyp/all.gypi", "dart/dart.gyp"], | 60 "-Idart/tools/gyp/all.gypi", "dart/dart.gyp"], |
| 61 }, | 61 }, |
| 62 ] | 62 ] |
| OLD | NEW |