OLD | NEW |
1 vars = { | 1 vars = { |
2 # Use this googlecode_url variable only if there is an internal mirror for it. | 2 # Use this googlecode_url variable only if there is an internal mirror for it. |
3 # If you do not know, use the full path while defining your new deps entry. | 3 # If you do not know, use the full path while defining your new deps entry. |
4 "googlecode_url": "http://%s.googlecode.com/svn", | 4 "googlecode_url": "http://%s.googlecode.com/svn", |
5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
7 "webkit_revision": "92768", | 7 "webkit_revision": "92768", |
8 "chromium_git": "http://git.chromium.org/git", | 8 "chromium_git": "http://git.chromium.org/git", |
9 "swig_revision": "69281", | 9 "swig_revision": "69281", |
10 # These hashes need to be updated when nacl_revision is changed. | 10 # These hashes need to be updated when nacl_revision is changed. |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 136 |
137 "src/tools/page_cycler/acid3": | 137 "src/tools/page_cycler/acid3": |
138 "/trunk/deps/page_cycler/acid3@19546", | 138 "/trunk/deps/page_cycler/acid3@19546", |
139 | 139 |
140 "src/chrome/test/data/perf/frame_rate/content": | 140 "src/chrome/test/data/perf/frame_rate/content": |
141 "/trunk/deps/frame_rate/content@93671", | 141 "/trunk/deps/frame_rate/content@93671", |
142 | 142 |
143 "src/third_party/bidichecker": | 143 "src/third_party/bidichecker": |
144 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", | 144 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", |
145 | 145 |
| 146 # TODO(cira): Replace http://v8-i18n.googlecode.com/svn with |
| 147 # Var("googlecode_url") once the golo-mirror is setup. |
| 148 "src/third_party/v8-i18n": |
| 149 "http://v8-i18n.googlecode.com/svn" + "/trunk@4", |
| 150 |
146 "src/third_party/webgl_conformance": | 151 "src/third_party/webgl_conformance": |
147 "/trunk/deps/third_party/webgl/sdk/tests@93490", | 152 "/trunk/deps/third_party/webgl/sdk/tests@93490", |
148 | 153 |
149 # We run these layout tests as UI tests. Since many of the buildbots that | 154 # We run these layout tests as UI tests. Since many of the buildbots that |
150 # run layout tests do NOT have access to the LayoutTest directory, we need | 155 # run layout tests do NOT have access to the LayoutTest directory, we need |
151 # to map them here. In practice, these do not take up much space. | 156 # to map them here. In practice, these do not take up much space. |
152 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 157 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
153 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 158 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
154 Var("webkit_revision"), | 159 Var("webkit_revision"), |
155 "src/chrome/test/data/layout_tests/LayoutTests/fast/js/resources": | 160 "src/chrome/test/data/layout_tests/LayoutTests/fast/js/resources": |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 { | 407 { |
403 # This downloads binaries for Native Client's integrated runtime (IRT) | 408 # This downloads binaries for Native Client's integrated runtime (IRT) |
404 # library, which is built as NaCl untrusted code. | 409 # library, which is built as NaCl untrusted code. |
405 "pattern": ".", | 410 "pattern": ".", |
406 "action": ["python", "src/build/download_nacl_irt.py", | 411 "action": ["python", "src/build/download_nacl_irt.py", |
407 "--nacl_revision", Var("nacl_revision"), | 412 "--nacl_revision", Var("nacl_revision"), |
408 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), | 413 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), |
409 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], | 414 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], |
410 }, | 415 }, |
411 ] | 416 ] |
OLD | NEW |