OLD | NEW |
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 "chromium_url": "http://src.chromium.org/svn", | 9 "chromium_url": "http://src.chromium.org/svn", |
10 "closure_compiler_rev": "@1519", | |
11 } | 10 } |
12 | 11 |
13 deps = { | 12 deps = { |
14 "dart": | 13 "dart": |
15 "/branches/bleeding_edge/dart", | 14 "/branches/bleeding_edge/dart", |
16 | 15 |
17 # Stuff needed for GYP to run. | 16 # Stuff needed for GYP to run. |
18 "dart/third_party/gyp": | 17 "dart/third_party/gyp": |
19 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), | 18 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), |
20 | 19 |
21 "dart/third_party/v8": | 20 "dart/third_party/v8": |
22 "http://v8.googlecode.com/svn/branches/3.4", | 21 "http://v8.googlecode.com/svn/branches/3.4", |
23 | 22 |
24 "dart/third_party/closure_compiler_src": | |
25 "http://closure-compiler.googlecode.com/svn/trunk" + Var("closure_compiler_r
ev"), | |
26 | |
27 "dart/tests/co19/src": | 23 "dart/tests/co19/src": |
28 Var("co19_repo") + "tests/co19/src" + Var("co19_rev"), | 24 Var("co19_repo") + "tests/co19/src" + Var("co19_rev"), |
29 } | 25 } |
30 | 26 |
31 deps_os = { | 27 deps_os = { |
32 "win": { | 28 "win": { |
33 "dart/third_party/cygwin": | 29 "dart/third_party/cygwin": |
34 Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", | 30 Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", |
35 }, | 31 }, |
36 } | 32 } |
(...skipping 29 matching lines...) Expand all Loading... |
66 "pattern": ".", | 62 "pattern": ".", |
67 "action": ["python", "dart/third_party/gyp/gyp", "--depth=dart", | 63 "action": ["python", "dart/third_party/gyp/gyp", "--depth=dart", |
68 "-Idart/tools/gyp/all.gypi", "dart/dart.gyp"], | 64 "-Idart/tools/gyp/all.gypi", "dart/dart.gyp"], |
69 }, | 65 }, |
70 # Downloads the latest green dartium build | 66 # Downloads the latest green dartium build |
71 { | 67 { |
72 "pattern": ".", | 68 "pattern": ".", |
73 "action": ["python", "dart/tools/get_drt.py", "runhooks"], | 69 "action": ["python", "dart/tools/get_drt.py", "runhooks"], |
74 }, | 70 }, |
75 ] | 71 ] |
OLD | NEW |