| 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 "gyp_rev": "@1451", | 6 "gyp_rev": "@1451", |
| 7 "co19_rev": "@290", | 7 "co19_rev": "@290", |
| 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 "chromium_git": "http://git.chromium.org/git", | 10 "chromium_git": "http://git.chromium.org/git", |
| 11 "v8_version": "3.12", | |
| 12 } | 11 } |
| 13 | 12 |
| 14 deps = { | 13 deps = { |
| 15 "dart": | 14 "dart": |
| 16 "/branches/bleeding_edge/dart", | 15 "/branches/bleeding_edge/dart", |
| 17 | 16 |
| 18 # Stuff needed for GYP to run. | 17 # Stuff needed for GYP to run. |
| 19 "dart/third_party/gyp": | 18 "dart/third_party/gyp": |
| 20 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), | 19 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), |
| 21 | 20 |
| 22 "dart/third_party/v8": | 21 "dart/third_party/v8": |
| 23 "http://v8.googlecode.com/svn/branches/" + Var("v8_version"), | 22 "http://v8.googlecode.com/svn/branches/3.10", |
| 24 | 23 |
| 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 | 27 |
| 29 deps_os = { | 28 deps_os = { |
| 30 "android": { | 29 "android": { |
| 31 "dart/third_party//android_tools": | 30 "dart/third_party//android_tools": |
| 32 Var("chromium_git") + "/android_tools.git" + | 31 Var("chromium_git") + "/android_tools.git" + |
| 33 "@ebd740fc3d55dda34d9322c8c5f7749302734325", | 32 "@ebd740fc3d55dda34d9322c8c5f7749302734325", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 51 }, | 50 }, |
| 52 { | 51 { |
| 53 "pattern": ".", | 52 "pattern": ".", |
| 54 "action": ["python", "dart/tools/generate_projects.py", "compiler"], | 53 "action": ["python", "dart/tools/generate_projects.py", "compiler"], |
| 55 }, | 54 }, |
| 56 { | 55 { |
| 57 "pattern": ".", | 56 "pattern": ".", |
| 58 "action": ["python", "dart/tools/gyp_dart.py"], | 57 "action": ["python", "dart/tools/gyp_dart.py"], |
| 59 } | 58 } |
| 60 ] | 59 ] |
| OLD | NEW |