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": "86640", | 7 "webkit_revision": "86640", |
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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 (Var("googlecode_url") % "libjingle") + "/branches/chrome-sandbox@" + | 206 (Var("googlecode_url") % "libjingle") + "/branches/chrome-sandbox@" + |
207 Var("libjingle_revision"), | 207 Var("libjingle_revision"), |
208 | 208 |
209 "src/third_party/speex": | 209 "src/third_party/speex": |
210 "/trunk/deps/third_party/speex@83190", | 210 "/trunk/deps/third_party/speex@83190", |
211 | 211 |
212 "src/third_party/yasm/source/patched-yasm": | 212 "src/third_party/yasm/source/patched-yasm": |
213 "/trunk/deps/third_party/yasm/patched-yasm@73761", | 213 "/trunk/deps/third_party/yasm/patched-yasm@73761", |
214 | 214 |
215 "src/third_party/libjpeg_turbo": | 215 "src/third_party/libjpeg_turbo": |
216 "/trunk/deps/third_party/libjpeg_turbo@83675", | 216 "/trunk/deps/third_party/libjpeg_turbo@85600", |
217 | 217 |
218 "src/third_party/flac": | 218 "src/third_party/flac": |
219 "/trunk/deps/third_party/flac@75901", | 219 "/trunk/deps/third_party/flac@75901", |
220 | 220 |
221 # Needed to support nacl browser test jig. | 221 # Needed to support nacl browser test jig. |
222 "src/third_party/pylib": | 222 "src/third_party/pylib": |
223 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), | 223 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), |
224 "src/third_party/scons-2.0.1": | 224 "src/third_party/scons-2.0.1": |
225 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + | 225 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + |
226 Var("nacl_tools_revision"), | 226 Var("nacl_tools_revision"), |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 { | 359 { |
360 # This downloads binaries for Native Client's integrated runtime (IRT) | 360 # This downloads binaries for Native Client's integrated runtime (IRT) |
361 # library, which is built as NaCl untrusted code. | 361 # library, which is built as NaCl untrusted code. |
362 "pattern": ".", | 362 "pattern": ".", |
363 "action": ["python", "src/build/download_nacl_irt.py", | 363 "action": ["python", "src/build/download_nacl_irt.py", |
364 "--nacl_revision", Var("nacl_revision"), | 364 "--nacl_revision", Var("nacl_revision"), |
365 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), | 365 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"), |
366 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], | 366 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")], |
367 }, | 367 }, |
368 ] | 368 ] |
OLD | NEW |