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 # Use this googlecode_url variable only if there is an internal mirror for it. | 6 # Use this googlecode_url variable only if there is an internal mirror for it. |
7 # If you do not know, use the full path while defining your new deps entry. | 7 # If you do not know, use the full path while defining your new deps entry. |
8 "googlecode_url": "http://%s.googlecode.com/svn", | 8 "googlecode_url": "http://%s.googlecode.com/svn", |
9 | 9 |
10 "gyp_rev": "@1752", | 10 "gyp_rev": "@1752", |
(...skipping 23 matching lines...) Expand all Loading... |
34 "hamcrest_rev" : "@19997", | 34 "hamcrest_rev" : "@19997", |
35 "json_rev" : "@19997", | 35 "json_rev" : "@19997", |
36 "junit_rev" : "@19997", | 36 "junit_rev" : "@19997", |
37 "mockito_rev" : "@19997", | 37 "mockito_rev" : "@19997", |
38 "snakeyaml_rev" : "@19997", | 38 "snakeyaml_rev" : "@19997", |
39 "websocket_rev" : "@35854", | 39 "websocket_rev" : "@35854", |
40 "WebCore_rev" : "@34173", | 40 "WebCore_rev" : "@34173", |
41 "weberknecht_rev" : "@33599", | 41 "weberknecht_rev" : "@33599", |
42 "bootstrap_css_rev" : "@28387", | 42 "bootstrap_css_rev" : "@28387", |
43 "font_awesome_rev": "@31824", | 43 "font_awesome_rev": "@31824", |
| 44 |
| 45 # Revisions of older packages - these point to bleeding edge even for channels |
| 46 "barback-0.13_rev": "@REVISION_OF_DART_REPO_WHERE_BARBACK_WAS_0.13.0", |
44 } | 47 } |
45 | 48 |
46 deps = { | 49 deps = { |
47 "dart": | 50 "dart": |
48 "/branches/bleeding_edge/dart", | 51 "/branches/bleeding_edge/dart", |
49 | 52 |
50 # Stuff needed for GYP to run. | 53 # Stuff needed for GYP to run. |
51 "dart/third_party/gyp": | 54 "dart/third_party/gyp": |
52 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), | 55 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), |
53 | 56 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "dart/third_party/mockito": "/third_party/mockito" + Var("mockito_rev"), | 100 "dart/third_party/mockito": "/third_party/mockito" + Var("mockito_rev"), |
98 "dart/third_party/snakeyaml": "/third_party/snakeyaml" + Var("snakeyaml_rev"), | 101 "dart/third_party/snakeyaml": "/third_party/snakeyaml" + Var("snakeyaml_rev"), |
99 "dart/third_party/websocket": "/third_party/websocket" + Var("websocket_rev"), | 102 "dart/third_party/websocket": "/third_party/websocket" + Var("websocket_rev"), |
100 "dart/third_party/d8": "/third_party/d8" + Var("d8_rev"), | 103 "dart/third_party/d8": "/third_party/d8" + Var("d8_rev"), |
101 "dart/third_party/WebCore": "/third_party/WebCore" + Var("WebCore_rev"), | 104 "dart/third_party/WebCore": "/third_party/WebCore" + Var("WebCore_rev"), |
102 "dart/third_party/weberknecht": | 105 "dart/third_party/weberknecht": |
103 "/third_party/weberknecht" + Var("weberknecht_rev"), | 106 "/third_party/weberknecht" + Var("weberknecht_rev"), |
104 | 107 |
105 "dart/third_party/font-awesome": | 108 "dart/third_party/font-awesome": |
106 "/third_party/font-awesome" + Var("font_awesome_rev"), | 109 "/third_party/font-awesome" + Var("font_awesome_rev"), |
| 110 |
| 111 "dart/third_party/pkg/barback-0.13.0": |
| 112 "/branches/bleeding_edge/dart/pkg/barback" + Var("barback-0.13_rev"), |
107 } | 113 } |
108 | 114 |
109 deps_os = { | 115 deps_os = { |
110 "android": { | 116 "android": { |
111 "dart/third_party//android_tools": | 117 "dart/third_party//android_tools": |
112 Var("chromium_git") + "/android_tools.git" + | 118 Var("chromium_git") + "/android_tools.git" + |
113 "@e504b737693e96816b40e6ae80d177352c079c18", | 119 "@e504b737693e96816b40e6ae80d177352c079c18", |
114 }, | 120 }, |
115 "win": { | 121 "win": { |
116 "dart/third_party/cygwin": | 122 "dart/third_party/cygwin": |
(...skipping 16 matching lines...) Expand all Loading... |
133 }, | 139 }, |
134 { | 140 { |
135 "pattern": ".", | 141 "pattern": ".", |
136 "action": ["python", "dart/editor/build/generate_sources.py"], | 142 "action": ["python", "dart/editor/build/generate_sources.py"], |
137 }, | 143 }, |
138 { | 144 { |
139 "pattern": ".", | 145 "pattern": ".", |
140 "action": ["python", "dart/tools/gyp_dart.py"], | 146 "action": ["python", "dart/tools/gyp_dart.py"], |
141 }, | 147 }, |
142 ] | 148 ] |
OLD | NEW |