| 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": "@16", | 7 "co19_rev": "@16", |
| 8 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/", | 8 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/", |
| 9 "dart_branch": "/branches/bleeding_edge/dart", | 9 "dart_branch": "/branches/bleeding_edge/dart", |
| 10 "closure_compiler_rev": "@1519", | 10 "closure_compiler_rev": "@1519", |
| 11 } | 11 } |
| (...skipping 15 matching lines...) Expand all Loading... |
| 27 Var("dart_branch") + "/tools", | 27 Var("dart_branch") + "/tools", |
| 28 | 28 |
| 29 # dartc runs the VM's tests. | 29 # dartc runs the VM's tests. |
| 30 "runtime": | 30 "runtime": |
| 31 Var("dart_branch") + "/runtime", | 31 Var("dart_branch") + "/runtime", |
| 32 | 32 |
| 33 # dartc compiles the client code as a test. | 33 # dartc compiles the client code as a test. |
| 34 "client": | 34 "client": |
| 35 Var("dart_branch") + "/client", | 35 Var("dart_branch") + "/client", |
| 36 | 36 |
| 37 # dartc compiles the samples code as a test. | 37 # dartc compiles the samples code as a test. |
| 38 "samples": | 38 "samples": |
| 39 Var("dart_branch") + "/samples", | 39 Var("dart_branch") + "/samples", |
| 40 | 40 |
| 41 "utils": |
| 42 Var("dart_branch") + "/utils", |
| 43 |
| 41 # Stuff needed for GYP to run. | 44 # Stuff needed for GYP to run. |
| 42 "third_party/gyp": | 45 "third_party/gyp": |
| 43 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), | 46 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), |
| 44 | 47 |
| 45 # Build time dependencies for dartc | 48 # Build time dependencies for dartc |
| 46 "third_party/apache_ant": | 49 "third_party/apache_ant": |
| 47 Var("dart_branch") + "/third_party/apache_ant", | 50 Var("dart_branch") + "/third_party/apache_ant", |
| 48 | 51 |
| 49 "third_party/args4j": | 52 "third_party/args4j": |
| 50 Var("dart_branch") + "/third_party/args4j", | 53 Var("dart_branch") + "/third_party/args4j", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 77 hooks = [ | 80 hooks = [ |
| 78 { | 81 { |
| 79 "pattern": ".", | 82 "pattern": ".", |
| 80 "action": ["python", "compiler/scripts/generate_my_projects.py"], | 83 "action": ["python", "compiler/scripts/generate_my_projects.py"], |
| 81 }, | 84 }, |
| 82 { | 85 { |
| 83 "pattern": ".", | 86 "pattern": ".", |
| 84 "action": ["python", "tools/generate_projects.py", "compiler"], | 87 "action": ["python", "tools/generate_projects.py", "compiler"], |
| 85 }, | 88 }, |
| 86 ] | 89 ] |
| OLD | NEW |