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": "91447", | 7 "webkit_revision": "91447", |
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 "src/third_party/ots": | 125 "src/third_party/ots": |
126 (Var("googlecode_url") % "ots") + "/trunk@69", | 126 (Var("googlecode_url") % "ots") + "/trunk@69", |
127 | 127 |
128 "src/tools/page_cycler/acid3": | 128 "src/tools/page_cycler/acid3": |
129 "/trunk/deps/page_cycler/acid3@19546", | 129 "/trunk/deps/page_cycler/acid3@19546", |
130 | 130 |
131 "src/third_party/bidichecker": | 131 "src/third_party/bidichecker": |
132 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", | 132 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", |
133 | 133 |
134 "src/third_party/webgl_conformance": | 134 "src/third_party/webgl_conformance": |
135 "/trunk/deps/third_party/webgl/sdk/tests@91578", | 135 "/trunk/deps/third_party/webgl/sdk/tests@93218", |
136 | 136 |
137 # We run these layout tests as UI tests. Since many of the buildbots that | 137 # We run these layout tests as UI tests. Since many of the buildbots that |
138 # run layout tests do NOT have access to the LayoutTest directory, we need | 138 # run layout tests do NOT have access to the LayoutTest directory, we need |
139 # to map them here. In practice, these do not take up much space. | 139 # to map them here. In practice, these do not take up much space. |
140 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 140 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
141 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 141 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
142 Var("webkit_revision"), | 142 Var("webkit_revision"), |
143 "src/chrome/test/data/layout_tests/LayoutTests/fast/js/resources": | 143 "src/chrome/test/data/layout_tests/LayoutTests/fast/js/resources": |
144 Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" + | 144 Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" + |
145 Var("webkit_revision"), | 145 Var("webkit_revision"), |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 { | 382 { |
383 # This downloads binaries for Native Client's integrated runtime (IRT) | 383 # This downloads binaries for Native Client's integrated runtime (IRT) |
384 # library, which is built as NaCl untrusted code. | 384 # library, which is built as NaCl untrusted code. |
385 "pattern": ".", | 385 "pattern": ".", |
386 "action": ["python", "src/build/download_nacl_irt.py", | 386 "action": ["python", "src/build/download_nacl_irt.py", |
387 "--nacl_revision", Var("nacl_revision"), | 387 "--nacl_revision", Var("nacl_revision"), |
388 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), | 388 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), |
389 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], | 389 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], |
390 }, | 390 }, |
391 ] | 391 ] |
OLD | NEW |