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 20 matching lines...) Expand all Loading... |
31 "guava_rev" : "@19997", | 31 "guava_rev" : "@19997", |
32 "hamcrest_rev" : "@19997", | 32 "hamcrest_rev" : "@19997", |
33 "json_rev" : "@19997", | 33 "json_rev" : "@19997", |
34 "junit_rev" : "@19997", | 34 "junit_rev" : "@19997", |
35 "mockito_rev" : "@19997", | 35 "mockito_rev" : "@19997", |
36 "snakeyaml_rev" : "@19997", | 36 "snakeyaml_rev" : "@19997", |
37 "stripjar_rev" : "@20110", | 37 "stripjar_rev" : "@20110", |
38 "WebCore_rev" : "@31553", | 38 "WebCore_rev" : "@31553", |
39 "weberknecht_rev" : "@26547", | 39 "weberknecht_rev" : "@26547", |
40 "bootstrap_css_rev" : "@28387", | 40 "bootstrap_css_rev" : "@28387", |
| 41 "font_awesome_rev": "@31824", |
41 } | 42 } |
42 | 43 |
43 deps = { | 44 deps = { |
44 "dart": | 45 "dart": |
45 "/branches/bleeding_edge/dart", | 46 "/branches/bleeding_edge/dart", |
46 | 47 |
47 # Stuff needed for GYP to run. | 48 # Stuff needed for GYP to run. |
48 "dart/third_party/gyp": | 49 "dart/third_party/gyp": |
49 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), | 50 (Var("googlecode_url") % "gyp") + "/trunk" + Var("gyp_rev"), |
50 | 51 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "dart/third_party/hamcrest": "/third_party/hamcrest" + Var("hamcrest_rev"), | 89 "dart/third_party/hamcrest": "/third_party/hamcrest" + Var("hamcrest_rev"), |
89 "dart/third_party/json": "/third_party/json" + Var("json_rev"), | 90 "dart/third_party/json": "/third_party/json" + Var("json_rev"), |
90 "dart/third_party/junit": "/third_party/junit" + Var("junit_rev"), | 91 "dart/third_party/junit": "/third_party/junit" + Var("junit_rev"), |
91 "dart/third_party/mockito": "/third_party/mockito" + Var("mockito_rev"), | 92 "dart/third_party/mockito": "/third_party/mockito" + Var("mockito_rev"), |
92 "dart/third_party/snakeyaml": "/third_party/snakeyaml" + Var("snakeyaml_rev"), | 93 "dart/third_party/snakeyaml": "/third_party/snakeyaml" + Var("snakeyaml_rev"), |
93 "dart/third_party/stripjar": "/third_party/stripjar" + Var("stripjar_rev"), | 94 "dart/third_party/stripjar": "/third_party/stripjar" + Var("stripjar_rev"), |
94 "dart/third_party/d8": "/third_party/d8" + Var("d8_rev"), | 95 "dart/third_party/d8": "/third_party/d8" + Var("d8_rev"), |
95 "dart/third_party/WebCore": "/third_party/WebCore" + Var("WebCore_rev"), | 96 "dart/third_party/WebCore": "/third_party/WebCore" + Var("WebCore_rev"), |
96 "dart/third_party/weberknecht": | 97 "dart/third_party/weberknecht": |
97 "/third_party/weberknecht" + Var("weberknecht_rev"), | 98 "/third_party/weberknecht" + Var("weberknecht_rev"), |
| 99 |
| 100 "dart/third_party/font-awesome": |
| 101 "/third_party/font-awesome" + Var("font_awesome_rev"), |
98 } | 102 } |
99 | 103 |
100 deps_os = { | 104 deps_os = { |
101 "android": { | 105 "android": { |
102 "dart/third_party//android_tools": | 106 "dart/third_party//android_tools": |
103 Var("chromium_git") + "/android_tools.git" + | 107 Var("chromium_git") + "/android_tools.git" + |
104 "@e504b737693e96816b40e6ae80d177352c079c18", | 108 "@e504b737693e96816b40e6ae80d177352c079c18", |
105 }, | 109 }, |
106 "win": { | 110 "win": { |
107 "dart/third_party/cygwin": | 111 "dart/third_party/cygwin": |
(...skipping 16 matching lines...) Expand all Loading... |
124 }, | 128 }, |
125 { | 129 { |
126 "pattern": ".", | 130 "pattern": ".", |
127 "action": ["python", "dart/editor/build/generate_sources.py"], | 131 "action": ["python", "dart/editor/build/generate_sources.py"], |
128 }, | 132 }, |
129 { | 133 { |
130 "pattern": ".", | 134 "pattern": ".", |
131 "action": ["python", "dart/tools/gyp_dart.py"], | 135 "action": ["python", "dart/tools/gyp_dart.py"], |
132 }, | 136 }, |
133 ] | 137 ] |
OLD | NEW |