| 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": "@937", | 6 "gyp_rev": "@937", |
| 7 "co19_rev": "@119", | 7 "co19_rev": "@119", |
| 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", | |
| 11 } | 10 } |
| 12 | 11 |
| 13 deps = { | 12 deps = { |
| 14 "compiler": | 13 "compiler": |
| 15 Var("dart_branch") + "/compiler", | 14 Var("dart_branch") + "/compiler", |
| 16 | 15 |
| 17 "corelib": | 16 "corelib": |
| 18 Var("dart_branch") + "/corelib", | 17 Var("dart_branch") + "/corelib", |
| 19 | 18 |
| 20 "language": | 19 "language": |
| (...skipping 27 matching lines...) Expand all Loading... |
| 48 "third_party/gyp": | 47 "third_party/gyp": |
| 49 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), | 48 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), |
| 50 | 49 |
| 51 # Build time dependencies for dartc | 50 # Build time dependencies for dartc |
| 52 "third_party/apache_ant": | 51 "third_party/apache_ant": |
| 53 Var("dart_branch") + "/third_party/apache_ant", | 52 Var("dart_branch") + "/third_party/apache_ant", |
| 54 | 53 |
| 55 "third_party/args4j": | 54 "third_party/args4j": |
| 56 Var("dart_branch") + "/third_party/args4j", | 55 Var("dart_branch") + "/third_party/args4j", |
| 57 | 56 |
| 58 "third_party/closure_compiler_src": | |
| 59 "http://closure-compiler.googlecode.com/svn/trunk" + Var("closure_compiler_r
ev"), | |
| 60 | |
| 61 "third_party/guava": | 57 "third_party/guava": |
| 62 Var("dart_branch") + "/third_party/guava", | 58 Var("dart_branch") + "/third_party/guava", |
| 63 | 59 |
| 64 "third_party/hamcrest": | 60 "third_party/hamcrest": |
| 65 Var("dart_branch") + "/third_party/hamcrest", | 61 Var("dart_branch") + "/third_party/hamcrest", |
| 66 | 62 |
| 67 "third_party/json": | 63 "third_party/json": |
| 68 Var("dart_branch") + "/third_party/json", | 64 Var("dart_branch") + "/third_party/json", |
| 69 | 65 |
| 70 "third_party/junit": | 66 "third_party/junit": |
| (...skipping 12 matching lines...) Expand all Loading... |
| 83 hooks = [ | 79 hooks = [ |
| 84 { | 80 { |
| 85 "pattern": ".", | 81 "pattern": ".", |
| 86 "action": ["python", "compiler/scripts/generate_my_projects.py"], | 82 "action": ["python", "compiler/scripts/generate_my_projects.py"], |
| 87 }, | 83 }, |
| 88 { | 84 { |
| 89 "pattern": ".", | 85 "pattern": ".", |
| 90 "action": ["python", "tools/generate_projects.py", "compiler"], | 86 "action": ["python", "tools/generate_projects.py", "compiler"], |
| 91 }, | 87 }, |
| 92 ] | 88 ] |
| OLD | NEW |